diff options
author | Hor911 <hor911@ydb.tech> | 2024-01-13 15:41:13 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-13 15:41:13 +0300 |
commit | c5256a829278f1ff128f81dbf087cee0dee034c6 (patch) | |
tree | 55008dd90dcba0c1406aecbc3064276c33499212 | |
parent | 7e9bf17acb6fe5f7fe3f2bb7d503697e54be36f3 (diff) | |
download | ydb-c5256a829278f1ff128f81dbf087cee0dee034c6.tar.gz |
Fix python test style (#867)
-rw-r--r-- | ydb/tests/fq/s3/test_formats.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ydb/tests/fq/s3/test_formats.py b/ydb/tests/fq/s3/test_formats.py index e16e1f1780..5ff3640952 100644 --- a/ydb/tests/fq/s3/test_formats.py +++ b/ydb/tests/fq/s3/test_formats.py @@ -105,12 +105,12 @@ class TestS3Formats: self.create_bucket_and_upload_file("btct.parquet", s3, kikimr) client.create_storage_connection("btct", "fbucket") - sql = f''' + sql = ''' PRAGMA s3.UseBlocksSource="true"; SELECT * FROM btct.`btct.parquet` - WITH (format=`parquet`, + WITH (format=`parquet`, SCHEMA=( hash STRING, version INT64, @@ -136,7 +136,6 @@ class TestS3Formats: assert "Error while reading file btct.parquet" in issues[0].message assert "File contains LIST field outputs and can\'t be parsed" in issues[0].issues[0].message - @yq_all @pytest.mark.parametrize("client", [{"folder_id": "my_folder"}], indirect=True) def test_invalid_format(self, kikimr, s3, client): |