From ebc90eff4812f0ca06ebefc94d03cfc4eef3f0a8 Mon Sep 17 00:00:00 2001 From: pavel-zotov Date: Fri, 27 Sep 2024 08:46:23 +0300 Subject: [PATCH] Added/Updated tests\bugs\gh_8265_test.py: fixed wrong value of argument for 'driver_config.register_server()' call that caused another test fail with 'Server ... already registered' --- tests/bugs/gh_8265_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/bugs/gh_8265_test.py b/tests/bugs/gh_8265_test.py index 7b1f4979..891e0d76 100644 --- a/tests/bugs/gh_8265_test.py +++ b/tests/bugs/gh_8265_test.py @@ -106,8 +106,8 @@ def test_1(act: Action, capsys): for sq_conv in ('true','false',): - srv_cfg = driver_config.register_server(name = f'srv_cfg_aae2ae32_{sq_conv}', config = '') - db_cfg_name = f'db_cfg_aae2ae32_{sq_conv}' + srv_cfg = driver_config.register_server(name = f'srv_cfg_8265_{sq_conv}', config = '') + db_cfg_name = f'db_cfg_8265_{sq_conv}' db_cfg_object = driver_config.register_database(name = db_cfg_name) db_cfg_object.server.value = srv_cfg.name db_cfg_object.database.value = str(act.db.db_path)