diff options
Diffstat (limited to 'tests/test_git_superproject.py')
-rw-r--r-- | tests/test_git_superproject.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_git_superproject.py b/tests/test_git_superproject.py index 478ebca7..4e66521b 100644 --- a/tests/test_git_superproject.py +++ b/tests/test_git_superproject.py | |||
@@ -34,7 +34,7 @@ class SuperprojectTestCase(unittest.TestCase): | |||
34 | PARENT_SID_KEY = "GIT_TRACE2_PARENT_SID" | 34 | PARENT_SID_KEY = "GIT_TRACE2_PARENT_SID" |
35 | PARENT_SID_VALUE = "parent_sid" | 35 | PARENT_SID_VALUE = "parent_sid" |
36 | SELF_SID_REGEX = r"repo-\d+T\d+Z-.*" | 36 | SELF_SID_REGEX = r"repo-\d+T\d+Z-.*" |
37 | FULL_SID_REGEX = r"^%s/%s" % (PARENT_SID_VALUE, SELF_SID_REGEX) | 37 | FULL_SID_REGEX = rf"^{PARENT_SID_VALUE}/{SELF_SID_REGEX}" |
38 | 38 | ||
39 | def setUp(self): | 39 | def setUp(self): |
40 | """Set up superproject every time.""" | 40 | """Set up superproject every time.""" |