Skip to content

Commit 8f043f0

Browse files
committed
fixed last failing test, hopefully this works for all git versions...
1 parent 1a5885a commit 8f043f0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: test/git/test_git.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ def test_it_returns_stderr_in_output(self):
4747

4848
def test_it_does_not_strip_output_when_using_with_raw_output(self):
4949
# Note: trailing newline
50-
assert_match(r"^git: 'this-does-not-exist' is not a git-command" + os.linesep,
50+
assert_match(r"^git: 'this-does-not-exist' is not a git-command\. See 'git --help'\."
51+
+ os.linesep,
5152
self.git.this_does_not_exist(with_stderr=True,
5253
with_raw_output=True))

0 commit comments

Comments
 (0)