We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3618152 commit f4a6114Copy full SHA for f4a6114
1 file changed
lambdas/shared/tests/test_common/test_converter_utils.py
@@ -16,7 +16,7 @@ def test_too_short_raises(self):
16
timestamp_to_rfc3339("20260212T1744")
17
18
def test_output_is_rfc3339(self):
19
- rfc3339 = re.compile(r"^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}(Z|[+-]\d{2}:\d{2})$")
+ rfc3339 = re.compile(r"^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(Z|[+-]\d{2}:\d{2})$")
20
self.assertRegex(timestamp_to_rfc3339("20260212T17443700"), rfc3339)
21
22
def test_non_string_raises_type_error(self):
0 commit comments