From 84bb17033c7cc91adf2147456a29606eb1f48812 Mon Sep 17 00:00:00 2001 From: zvonand Date: Thu, 22 Jun 2023 19:48:28 +0200 Subject: [PATCH] fix black --- tests/integration/test_storage_hdfs/test.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/integration/test_storage_hdfs/test.py b/tests/integration/test_storage_hdfs/test.py index cf951050c6f..8ff88791a3a 100644 --- a/tests/integration/test_storage_hdfs/test.py +++ b/tests/integration/test_storage_hdfs/test.py @@ -102,7 +102,9 @@ def test_storage_with_multidirectory_glob(started_cluster): assert (r == f"File1\t11\nFile2\t22\n") or (r == f"File2\t22\nFile1\t11\n") try: - node1.query("SELECT * FROM hdfs('hdfs://hdfs1:9000/multiglob/{p4/path1,p2/path3}/postfix/data{1,2}.nonexist', TSV)") + node1.query( + "SELECT * FROM hdfs('hdfs://hdfs1:9000/multiglob/{p4/path1,p2/path3}/postfix/data{1,2}.nonexist', TSV)" + ) assert False, "Exception have to be thrown" except Exception as ex: print(ex)