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"])