summaryrefslogtreecommitdiffstats
path: root/tests/test_git_superproject.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@google.com>2023-09-29 11:04:49 -0400
committerLUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-10-31 16:03:54 +0000
commitb32ccbb66bb16965ecb8b4e266c4e45186636c1b (patch)
tree1c1eda32af709f0cbf822de56f696ccd531ce6de /tests/test_git_superproject.py
parentb99272c601bc5f466c3cfc782bb852c2c967ad27 (diff)
downloadgit-repo-b32ccbb66bb16965ecb8b4e266c4e45186636c1b.tar.gz
cleanup: Update codebase to expect Python 3.6
- Bump minimum version to Python 3.6. - Use f-strings in a lot of places. Change-Id: I2aa70197230fcec2eff8e7c8eb754f20c08075bb Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/389034 Tested-by: Jason R. Coombs <jaraco@google.com> Reviewed-by: Mike Frysinger <vapier@google.com> Commit-Queue: Jason R. Coombs <jaraco@google.com>
Diffstat (limited to 'tests/test_git_superproject.py')
-rw-r--r--tests/test_git_superproject.py2
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."""