summaryrefslogtreecommitdiffstats
path: root/tests/test_git_superproject.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_git_superproject.py')
-rw-r--r--tests/test_git_superproject.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_git_superproject.py b/tests/test_git_superproject.py
index dc46ec65..600b069f 100644
--- a/tests/test_git_superproject.py
+++ b/tests/test_git_superproject.py
@@ -108,7 +108,9 @@ class SuperprojectTestCase(unittest.TestCase):
108 self.assertRegex(log_entry["sid"], self.FULL_SID_REGEX) 108 self.assertRegex(log_entry["sid"], self.FULL_SID_REGEX)
109 else: 109 else:
110 self.assertRegex(log_entry["sid"], self.SELF_SID_REGEX) 110 self.assertRegex(log_entry["sid"], self.SELF_SID_REGEX)
111 self.assertRegex(log_entry["time"], r"^\d+-\d+-\d+T\d+:\d+:\d+\.\d+Z$") 111 self.assertRegex(
112 log_entry["time"], r"^\d+-\d+-\d+T\d+:\d+:\d+\.\d+\+00:00$"
113 )
112 114
113 def readLog(self, log_path): 115 def readLog(self, log_path):
114 """Helper function to read log data into a list.""" 116 """Helper function to read log data into a list."""