Fix style check

This commit is contained in:
kssenii 2023-08-23 11:48:08 +02:00
parent 27b559bcda
commit aa21fc58ce

View File

@ -201,7 +201,7 @@ def test_delete_after_processing(started_cluster, mode):
get_query = f"SELECT * FROM test.s3_queue ORDER BY column1, column2, column3"
assert [
list(map(int, l.split())) for l in run_query(instance, get_query).splitlines()
] == sorted(total_values, key = lambda x:(x[0], x[1], x[2]))
] == sorted(total_values, key=lambda x: (x[0], x[1], x[2]))
minio = started_cluster.minio_client
objects = list(minio.list_objects(started_cluster.minio_bucket, recursive=True))
assert len(objects) == 0