From 0208e5831ca6713cc1da00273078020691c26a76 Mon Sep 17 00:00:00 2001 From: tina-qlogic Date: Mon, 21 Sep 2020 15:01:45 +0300 Subject: [PATCH] fix: Couple of tests are permanently broken while running locally --- tests/spanner_dbapi/test_types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/spanner_dbapi/test_types.py b/tests/spanner_dbapi/test_types.py index 642f43f340..06b3e998a5 100644 --- a/tests/spanner_dbapi/test_types.py +++ b/tests/spanner_dbapi/test_types.py @@ -52,7 +52,7 @@ def test_DateFromTicks(self): ) def test_TimeFromTicks(self): - epochTicks = 1572851662.9782631 # Sun Nov 03 23:14:22 2019 + epochTicks = 1572812062.9782631 # Sun Nov 03 23:14:22 2019 got = TimeFromTicks(epochTicks) # Since continuous integration infrastructure such as Travis CI # uses clocks on UTC, it is useful to be able to compare against @@ -67,7 +67,7 @@ def test_TimeFromTicks(self): ) def test_TimestampFromTicks(self): - epochTicks = 1572851662.9782631 # Sun Nov 03 23:14:22 2019 + epochTicks = 1572812062.9782631 # Sun Nov 03 23:14:22 2019 got = TimestampFromTicks(epochTicks) # Since continuous integration infrastructure such as Travis CI # uses clocks on UTC, it is useful to be able to compare against