From acfc7e4ce9aba2fc240d65a09af060dd185cf34a Mon Sep 17 00:00:00 2001 From: mibe Date: Wed, 5 Jun 2024 08:49:01 +0100 Subject: [PATCH] #279 Fixed a bug with a cfg name [run-notebook-tests] --- test/notebooks/notebook_test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/notebooks/notebook_test_utils.py b/test/notebooks/notebook_test_utils.py index 1105cd86..3cbc88d5 100644 --- a/test/notebooks/notebook_test_utils.py +++ b/test/notebooks/notebook_test_utils.py @@ -147,7 +147,7 @@ def access_to_temp_saas_secret_store(tmp_path_factory, store_password = generate_password(12) secrets = Secrets(store_path, master_password=store_password) - secrets.save(CKey.backend, StorageBackend.saas.name) + secrets.save(CKey.storage_backend, StorageBackend.saas.name) secrets.save(CKey.saas_url, saas_host) secrets.save(CKey.saas_token, saas_pat) secrets.save(CKey.saas_account_id, saas_account_id)