aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryumkam <yumkam7@ydb.tech>2025-02-25 18:33:12 +0300
committerGitHub <noreply@github.com>2025-02-25 18:33:12 +0300
commit3c3612dd5db2352504266ca621a035a519580316 (patch)
treef1d444d28ae01c9c037c19d160178e183d8a3939
parent8afb53071bf69c3b6773832fd14286251f5f1121 (diff)
downloadydb-3c3612dd5db2352504266ca621a035a519580316.tar.gz
[tests] Fix timezone dependency (#15021)
-rw-r--r--ydb/tests/fq/s3/test_format_setting.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ydb/tests/fq/s3/test_format_setting.py b/ydb/tests/fq/s3/test_format_setting.py
index 76ab8ae686..d9498dd7df 100644
--- a/ydb/tests/fq/s3/test_format_setting.py
+++ b/ydb/tests/fq/s3/test_format_setting.py
@@ -2324,10 +2324,10 @@ Pear;15;33'''
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"],
]