from Utils.sql_handler import test_env_conn from TestData.FAQ.article_info_test_data import articleInfoTestData popular_article_update_sql = f'update `article` set is_popular = 0 where brand_id = {articleInfoTestData.brandId} and shop_id = {articleInfoTestData.shopId} and is_popular = 1' test_env_conn.execute_sql(sql=popular_article_update_sql)