diff --git a/tests/integration/annotation_import/test_label_import.py b/tests/integration/annotation_import/test_label_import.py index 06c3b10c5..44a308776 100644 --- a/tests/integration/annotation_import/test_label_import.py +++ b/tests/integration/annotation_import/test_label_import.py @@ -67,12 +67,13 @@ def test_get(client, project, annotation_import_test_helpers): @pytest.mark.slow -def test_wait_till_done(client, project, predictions): +def test_wait_till_done(client, configured_project, predictions): name = str(uuid.uuid4()) - label_import = LabelImport.create_from_objects(client=client, - project_id=project.uid, - name=name, - labels=predictions) + label_import = LabelImport.create_from_objects( + client=client, + project_id=configured_project.uid, + name=name, + labels=predictions) assert len(label_import.inputs) == len(predictions) label_import.wait_until_done()