From 26a5d5d9af089adb9e70eefcb2bde8f6e074e487 Mon Sep 17 00:00:00 2001 From: Caglar Pir Date: Wed, 4 Feb 2026 05:40:18 -0800 Subject: [PATCH] Fix integration tests after the addition of MAPCameraUUID --- tests/integration/fixtures.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/integration/fixtures.py b/tests/integration/fixtures.py index b674ac10..80f1ec20 100644 --- a/tests/integration/fixtures.py +++ b/tests/integration/fixtures.py @@ -379,9 +379,11 @@ def assert_descs_exact_equal(left: list[dict], right: list[dict]): # TODO: make sure groups are the same too for d in left: d.pop("MAPSequenceUUID", None) + d.pop("MAPCameraUUID", None) for d in right: d.pop("MAPSequenceUUID", None) + d.pop("MAPCameraUUID", None) left.sort(key=lambda d: d["filename"]) right.sort(key=lambda d: d["filename"])