From 2292f073be6426462981e5cd8993f723e1606110 Mon Sep 17 00:00:00 2001 From: mibe Date: Wed, 5 Jun 2024 15:09:53 +0100 Subject: [PATCH] #279 Updated the dependency again [run-notebook-tests] --- test/notebooks/notebook_test_utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/notebooks/notebook_test_utils.py b/test/notebooks/notebook_test_utils.py index c8cf8dc2..6941bf4e 100644 --- a/test/notebooks/notebook_test_utils.py +++ b/test/notebooks/notebook_test_utils.py @@ -161,8 +161,7 @@ def access_to_temp_saas_secret_store(tmp_path_factory) -> Tuple[Path, str]: with ExitStack() as stack: client = stack.enter_context(create_saas_client( secrets.get(CKey.saas_url), CKey.saas_token)) - api_access = stack.enter_context(OpenApiAccess( - client, secrets.get(CKey.saas_account_id))) + api_access = OpenApiAccess(client, secrets.get(CKey.saas_account_id)) stack.enter_context(api_access.allowed_ip()) db = stack.enter_context(api_access.database( secrets.get(CKey.saas_database_name)))