From 1a3eb6cfa664384b39d61e98d4d9c3e38e588392 Mon Sep 17 00:00:00 2001 From: Ivan Polomani Date: Mon, 2 Dec 2024 16:51:55 +0100 Subject: [PATCH] fix: small fix --- tests/tests_integration/test_api/test_workflows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_integration/test_api/test_workflows.py b/tests/tests_integration/test_api/test_workflows.py index ff80075c0..a13859cbd 100644 --- a/tests/tests_integration/test_api/test_workflows.py +++ b/tests/tests_integration/test_api/test_workflows.py @@ -46,7 +46,7 @@ @pytest.fixture def workflow_simint_routine(cognite_client: CogniteClient) -> str: - ensure_workflow_simint_routine(cognite_client) + return ensure_workflow_simint_routine(cognite_client) @pytest.fixture(autouse=True, scope="module")