File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,6 @@ def dataset(CLIENT):
84
84
def test_box_gt_upload (dataset ):
85
85
annotation = BoxAnnotation (** TEST_BOX_ANNOTATIONS [0 ])
86
86
response = dataset .annotate (annotations = [annotation ])
87
- print (response )
88
87
89
88
assert response ["dataset_id" ] == dataset .id
90
89
assert response ["annotations_processed" ] == 1
@@ -148,12 +147,11 @@ def test_multicategory_gt_upload(dataset):
148
147
assert response ["dataset_id" ] == dataset .id
149
148
assert response ["annotations_processed" ] == 1
150
149
assert response ["annotations_ignored" ] == 0
151
- print ( "HERE" )
150
+
152
151
response = dataset .refloc (annotation .reference_id )["annotations" ][
153
152
"multicategory"
154
153
]
155
- print ("RESPONSE: " , response )
156
- # TODO: Weirdness here also in the response from refloc?
154
+
157
155
assert len (response ) == 1
158
156
response_annotation = response [0 ]
159
157
assert_multicategory_annotation_matches_dict (
@@ -240,7 +238,7 @@ def test_mixed_annotation_upload(dataset):
240
238
response_annotations = dataset .refloc (bbox_annotations [0 ].reference_id )[
241
239
"annotations"
242
240
]
243
- print ( response_annotations )
241
+
244
242
assert len (response_annotations ) == 2
245
243
assert len (response_annotations ["box" ]) == 1
246
244
assert "segmentation" in response_annotations
You can’t perform that action at this time.
0 commit comments