From d54c6a94b4ebcec4abd82524a8e8dd50208f8186 Mon Sep 17 00:00:00 2001 From: zhanhuasheng Date: Tue, 23 Apr 2024 12:05:41 +0800 Subject: [PATCH] bugfix --- TestFile/customer/customer_select.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TestFile/customer/customer_select.py b/TestFile/customer/customer_select.py index 7bde8f5..d0cbbb8 100644 --- a/TestFile/customer/customer_select.py +++ b/TestFile/customer/customer_select.py @@ -1,7 +1,7 @@ from Utils.sql_handler import test_env_conn from TestData.customer.customer_test_data import customerData -customer_select_sql = f'select * from `customer` where brand_id = {customerData.brandId} and is_visitor = 0 and email != "" and email not like "%@willdeskvisitor.com%" order by create_at desc' +customer_select_sql = f'select * from `customer` where brand_id = {customerData.brandId} and email != "" and email not like "%@willdeskvisitor.com%" order by create_at desc' customer_select_result = test_env_conn.select_many_value(sql=customer_select_sql) customer_num = len(customer_select_result) -- GitLab