Skip to content

Commit 83b2abb

Browse files
authored
Merge pull request #802 from mapillary/fix-integration-tests
Fix integration tests after the addition of MAPCameraUUID
2 parents 19d8b85 + 26a5d5d commit 83b2abb

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

tests/integration/fixtures.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,9 +379,11 @@ def assert_descs_exact_equal(left: list[dict], right: list[dict]):
379379
# TODO: make sure groups are the same too
380380
for d in left:
381381
d.pop("MAPSequenceUUID", None)
382+
d.pop("MAPCameraUUID", None)
382383

383384
for d in right:
384385
d.pop("MAPSequenceUUID", None)
386+
d.pop("MAPCameraUUID", None)
385387

386388
left.sort(key=lambda d: d["filename"])
387389
right.sort(key=lambda d: d["filename"])

0 commit comments

Comments
 (0)