This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch HTHou-patch-1
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit 9c723b4c61fd52638ec68c806a97eaf5da3ecf85
Author: Haonan <[email protected]>
AuthorDate: Tue Jun 3 12:12:16 2025 +0800

    [Py-client] Fix test_dialect failed
---
 iotdb-client/client-py/tests/integration/sqlalchemy/test_dialect.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/iotdb-client/client-py/tests/integration/sqlalchemy/test_dialect.py 
b/iotdb-client/client-py/tests/integration/sqlalchemy/test_dialect.py
index 35a16ff366e..156464bcce9 100644
--- a/iotdb-client/client-py/tests/integration/sqlalchemy/test_dialect.py
+++ b/iotdb-client/client-py/tests/integration/sqlalchemy/test_dialect.py
@@ -76,7 +76,7 @@ def test_dialect():
         insp = inspect(eng)
         # test get_schema_names
         schema_names = insp.get_schema_names()
-        if not operator.ge(schema_names, ["root.cursor_s1", "root.cursor"]):
+        if not operator.ge(schema_names, ["root.cursor", "root.cursor_s1"]):
             test_fail()
             print_message("test get_schema_names failed!")
         # test get_table_names

Reply via email to