diff --git a/tests/python/rest_api/test_tasks.py b/tests/python/rest_api/test_tasks.py index 1edd5396ce69..40c3922cfcaf 100644 --- a/tests/python/rest_api/test_tasks.py +++ b/tests/python/rest_api/test_tasks.py @@ -2533,14 +2533,12 @@ def test_can_export_and_import_skeleton_tracks_in_coco_format(self): format_name = "COCO Keypoints 1.0" original_annotations = task.get_annotations() - print(original_annotations) task.export_dataset(format_name, dataset_file, include_images=False) task.remove_annotations() task.import_annotations(format_name, dataset_file) imported_annotations = task.get_annotations() - print(imported_annotations) # Number of shapes and tracks hasn't changed assert len(original_annotations.shapes) == len(imported_annotations.shapes)