From 9dfb9e03310bc53544db870ca44ce59fda986293 Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Tue, 10 Oct 2023 11:17:02 +0800 Subject: [PATCH] change test case --- tests/system-test/0-others/splitVGroupRep3.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/system-test/0-others/splitVGroupRep3.py b/tests/system-test/0-others/splitVGroupRep3.py index 713529bc0d..68c915eeaf 100644 --- a/tests/system-test/0-others/splitVGroupRep3.py +++ b/tests/system-test/0-others/splitVGroupRep3.py @@ -380,7 +380,6 @@ class TDTestCase: tdSql.execute("use streamdb;") tdSql.execute("create table ta(ts timestamp, age int);") tdSql.execute("create stream ma into sta as select count(*) from ta interval(1s);") - time.sleep(3) self.expectSplitError("streamdb") tdSql.execute("drop stream ma;") self.expectSplitOk("streamdb") @@ -391,7 +390,6 @@ class TDTestCase: tdSql.execute("use topicdb;") tdSql.execute("create table ta(ts timestamp, age int);") tdSql.execute("create topic toa as select * from ta;") - time.sleep(3) #self.expectSplitError("topicdb") tdSql.execute("drop topic toa;") self.expectSplitOk("topicdb")