We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 193ebaa commit 46dc784Copy full SHA for 46dc784
tests/test_single_annotation_download.py
@@ -62,9 +62,9 @@ def test_annotation_download_upload(
62
63
json1 = json.load(open(input_annotation_paths[0]))
64
json2 = json.load(open(anns_json_in_folder[0]))
65
- for i in json1:
+ for i in json1["instances"]:
66
i.pop("classId", None)
67
- for i in json2:
+ for i in json2["instances"]:
68
69
assert json1 == json2
70
if project_type == "Pixel":
0 commit comments