diff --git a/ydb/tests/fq/s3/test_format_setting.py b/ydb/tests/fq/s3/test_format_setting.py index 76ab8ae68690..d9498dd7dfd3 100644 --- a/ydb/tests/fq/s3/test_format_setting.py +++ b/ydb/tests/fq/s3/test_format_setting.py @@ -2324,10 +2324,10 @@ def test_parquet_converters_to_date(self, kikimr, s3, client, unique_prefix): def test_s3_push_down_parquet(self, kikimr, s3, client, unique_prefix): data = [ [ - int(datetime.fromisoformat("2024-06-17 00:00:00").timestamp() * 1000), - int(datetime.fromisoformat("2024-06-16 00:00:00").timestamp() * 1000), - int(datetime.fromisoformat("2024-06-15 00:00:00").timestamp() * 1000), - int(datetime.fromisoformat("2024-06-14 00:00:00").timestamp() * 1000), + int(datetime.fromisoformat("2024-06-17 00:00:00+00:00").timestamp() * 1000), + int(datetime.fromisoformat("2024-06-16 00:00:00+00:00").timestamp() * 1000), + int(datetime.fromisoformat("2024-06-15 00:00:00+00:00").timestamp() * 1000), + int(datetime.fromisoformat("2024-06-14 00:00:00+00:00").timestamp() * 1000), ], ['apple', "banana", "pineapple", "watermelon"], ]