Automatic style fix

This commit is contained in:
robot-clickhouse 2023-11-04 14:56:15 +00:00
parent 9acd3707cb
commit 6ad8e789f6

View File

@ -61,11 +61,15 @@ def test_merge_doesnt_work_without_zookeeper(start_cluster):
node1.query("TRUNCATE TABLE test_table")
total_parts = node1.query("SELECT count(*) from system.parts where table = 'test_table'")
total_parts = node1.query(
"SELECT count(*) from system.parts where table = 'test_table'"
)
assert total_parts == "0\n" or total_parts == "1\n"
assert (
node1.query("SELECT count(*) from system.parts where table = 'test_table' and active = 1")
node1.query(
"SELECT count(*) from system.parts where table = 'test_table' and active = 1"
)
== "0\n"
)