From 90efaab25c64574872fa0bb91fae104b08d32053 Mon Sep 17 00:00:00 2001 From: cpwu Date: Fri, 27 May 2022 13:29:21 +0800 Subject: [PATCH] fix case --- tests/system-test/2-query/join.py | 2 +- tests/system-test/2-query/join2.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/system-test/2-query/join.py b/tests/system-test/2-query/join.py index fc547c58a3..140808d387 100644 --- a/tests/system-test/2-query/join.py +++ b/tests/system-test/2-query/join.py @@ -43,7 +43,7 @@ class TDTestCase: for num_col in NUM_COL: query_condition.extend( ( - f"sin( {tbname}.{num_col} )" + f"sin( {tbname}.{num_col} )", ) ) query_condition.extend( f"{tbname}.{num_col} + {tbname}.{num_col_1} " for num_col_1 in NUM_COL ) diff --git a/tests/system-test/2-query/join2.py b/tests/system-test/2-query/join2.py index dab663a7ba..40da41eee7 100644 --- a/tests/system-test/2-query/join2.py +++ b/tests/system-test/2-query/join2.py @@ -43,7 +43,7 @@ class TDTestCase: for num_col in NUM_COL: query_condition.extend( ( - f"sin( {tbname}.{num_col} )" + f"sin( {tbname}.{num_col} )", ) ) query_condition.extend( f"{tbname}.{num_col} + {tbname}.{num_col_1} " for num_col_1 in NUM_COL )