From aa21fc58ce45c0b164104f69b4e9be0d5d49af51 Mon Sep 17 00:00:00 2001 From: kssenii Date: Wed, 23 Aug 2023 11:48:08 +0200 Subject: [PATCH] Fix style check --- tests/integration/test_storage_s3_queue/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_storage_s3_queue/test.py b/tests/integration/test_storage_s3_queue/test.py index b69a18efca7..c11bbd43dc6 100644 --- a/tests/integration/test_storage_s3_queue/test.py +++ b/tests/integration/test_storage_s3_queue/test.py @@ -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