Skip to content

Commit 9b9de11

Browse files
committed
Fix the formatting
Now that the changes to lint.yml are fixed up, tested, and shown to be capable of revealing formatting errors, the formatting error I was using for testing (which is from 9fa1cee where I had introduced it inadvertently) can be fixed.
1 parent a872d9c commit 9b9de11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: test/test_git.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def tearDown(self):
4343
def _assert_logged_for_popen(self, log_watcher, name, value):
4444
re_name = re.escape(name)
4545
re_value = re.escape(str(value))
46-
re_line = re.compile(fr"DEBUG:git.cmd:Popen\(.*\b{re_name}={re_value}[,)]")
46+
re_line = re.compile(rf"DEBUG:git.cmd:Popen\(.*\b{re_name}={re_value}[,)]")
4747
match_attempts = [re_line.match(message) for message in log_watcher.output]
4848
self.assertTrue(any(match_attempts), repr(log_watcher.output))
4949

0 commit comments

Comments
 (0)