Skip to content

Commit 3618152

Browse files
committed
fix shared test
1 parent 9b07838 commit 3618152

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lambdas/shared/tests/test_common/test_converter_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66

77
class TestTimestampToRfc3339(unittest.TestCase):
88
def test_utc_conversion(self):
9-
self.assertEqual(timestamp_to_rfc3339("20260212T17443700"), "2026-02-12T17:44:37.000Z")
9+
self.assertEqual(timestamp_to_rfc3339("20260212T17443700"), "2026-02-12T17:44:37Z")
1010

1111
def test_bst_conversion(self):
12-
self.assertEqual(timestamp_to_rfc3339("20260212T17443701"), "2026-02-12T17:44:37.000+01:00")
12+
self.assertEqual(timestamp_to_rfc3339("20260212T17443701"), "2026-02-12T17:44:37+01:00")
1313

1414
def test_too_short_raises(self):
1515
with self.assertRaises(ValueError):

0 commit comments

Comments
 (0)