From e91761c1a768314164cbdf6092f0b59287ea9296 Mon Sep 17 00:00:00 2001 From: Shuduo Sang Date: Fri, 31 Jul 2020 10:17:02 +0800 Subject: [PATCH] change error wording determination to comply tdengine's change. --- tests/pytest/stable/query_after_reset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pytest/stable/query_after_reset.py b/tests/pytest/stable/query_after_reset.py index 0e34fade5f..b66fc2eff1 100644 --- a/tests/pytest/stable/query_after_reset.py +++ b/tests/pytest/stable/query_after_reset.py @@ -76,7 +76,7 @@ class Test: tdSql.query("select * from st") except Exception as e: tdLog.info("Exception catched: %s" % repr(e)) - if ('mnode invalid table name' not in repr(e)): + if ('Table does not exist' not in repr(e)): raise Exception(repr(e)) def create_stable(self): -- GitLab