Skip to content

Commit 61a357d

Browse files
authored
[Py-client] Fix test_dialect failed (#15630)
1 parent 1e49535 commit 61a357d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

iotdb-client/client-py/tests/integration/sqlalchemy/test_dialect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def test_dialect():
7676
insp = inspect(eng)
7777
# test get_schema_names
7878
schema_names = insp.get_schema_names()
79-
if not operator.ge(schema_names, ["root.cursor_s1", "root.cursor"]):
79+
if not operator.ge(schema_names, ["root.cursor", "root.cursor_s1"]):
8080
test_fail()
8181
print_message("test get_schema_names failed!")
8282
# test get_table_names

0 commit comments

Comments
 (0)