From 6204bf4a701405d8a3b253b39c767604f0b138be Mon Sep 17 00:00:00 2001 From: zhanhuasheng Date: Mon, 21 Oct 2024 10:51:39 +0800 Subject: [PATCH] bugfix --- .../shopifyIntegration/shopifyIntegration_shop_select.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TestFile/setting/shopifyIntegration/shopifyIntegration_shop_select.py b/TestFile/setting/shopifyIntegration/shopifyIntegration_shop_select.py index f0def12..89e7bdb 100644 --- a/TestFile/setting/shopifyIntegration/shopifyIntegration_shop_select.py +++ b/TestFile/setting/shopifyIntegration/shopifyIntegration_shop_select.py @@ -35,7 +35,7 @@ if shopify_shop_select_result: if not hasattr(shopifyIntegrationData, 'append_js_id'): test_env_conn.execute_sql(sql=js_shop_insert_sql) new_js_select_result = test_env_conn.select_one_value(sql=new_js_select_sql) - append_js_id = new_shop_select_result['id'] + append_js_id = new_js_select_result['id'] setattr(shopifyIntegrationData, 'append_js_id', append_js_id) else: test_env_conn.execute_sql(sql=shopify_shop_insert_sql) -- GitLab