Fix python format

This commit is contained in:
Amos Bird 2023-05-22 00:44:17 +08:00
parent 0a3d986e42
commit 8a40a48a49
No known key found for this signature in database
GPG Key ID: 80D430DCBECFEDB4

View File

@ -16,6 +16,7 @@ node = cluster.add_instance(
],
)
@pytest.fixture(scope="module", autouse=True)
def start_cluster():
try:
@ -24,6 +25,7 @@ def start_cluster():
finally:
cluster.shutdown()
def test_projection_broken_part():
node.query(
"""
@ -57,4 +59,7 @@ def test_projection_broken_part():
time.sleep(2)
assert int(node.query("select sum(b) from test_projection_broken_parts_1 group by a")) == 6
assert (
int(node.query("select sum(b) from test_projection_broken_parts_1 group by a"))
== 6
)