diff --git a/libs/labelbox/tests/integration/test_task.py b/libs/labelbox/tests/integration/test_task.py index af0ce9f4a..bec0d0414 100644 --- a/libs/labelbox/tests/integration/test_task.py +++ b/libs/labelbox/tests/integration/test_task.py @@ -57,19 +57,3 @@ def test_task_success_json(dataset, image_url, snapshot): snapshot.assert_match(json.dumps(task_result), 'test_task.test_task_success_json.json') assert len(task.result) - - -@pytest.mark.export_v1("export_v1 test remove later") -def test_task_success_label_export(client, configured_project_with_label): - project, _, _, _ = configured_project_with_label - # TODO: Move to export_v2 - project.export_labels() - user = client.get_user() - task = None - for task in user.created_tasks(): - if task.name != 'JSON Import' and task.type != 'adv-upsert-data-rows' and task.type != 'mea-label-registration': - break - - with pytest.raises(ValueError) as exc_info: - task.result - assert str(exc_info.value).startswith("Task result is only supported for")