From e3579f215f7ef75b7ab8fd53a4b2546967608129 Mon Sep 17 00:00:00 2001 From: Nikita Mikhaylov Date: Fri, 9 Aug 2019 15:58:46 +0300 Subject: [PATCH] comment to test --- dbms/tests/integration/test_atomic_drop_table/test.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dbms/tests/integration/test_atomic_drop_table/test.py b/dbms/tests/integration/test_atomic_drop_table/test.py index 4098cce446b..7d845baeec6 100644 --- a/dbms/tests/integration/test_atomic_drop_table/test.py +++ b/dbms/tests/integration/test_atomic_drop_table/test.py @@ -26,13 +26,11 @@ def start_cluster(): cluster.shutdown() def test_atomic_delete_with_stopped_zookeeper(start_cluster): - - node1.query("select * from zktest.atomic_drop_table") node1.query("insert into zktest.atomic_drop_table values (8192)") with PartitionManager() as pm: pm.drop_instance_zk_connections(node1) - error = node1.query_and_get_error("DROP TABLE zktest.atomic_drop_table") + error = node1.query_and_get_error("DROP TABLE zktest.atomic_drop_table") #Table won't drop assert error != "" time.sleep(5)