summaryrefslogtreecommitdiff
path: root/test/git/test_git.py
diff options
context:
space:
mode:
authorFlorian Apolloner <florian@apolloner.eu>2008-05-31 18:29:51 +0200
committerFlorian Apolloner <florian@apolloner.eu>2008-05-31 18:29:51 +0200
commit8f043f00d5161794ef538802dcc9ba75e375c058 (patch)
tree84603fa2f12c47f68d80cfb7d01f848def47eeb9 /test/git/test_git.py
parent1a5885a4c5983242b1356b57eafeb59a9d5c0d0f (diff)
downloadgitpython-8f043f00d5161794ef538802dcc9ba75e375c058.tar.gz
fixed last failing test, hopefully this works for all git versions...
Diffstat (limited to 'test/git/test_git.py')
-rw-r--r--test/git/test_git.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/git/test_git.py b/test/git/test_git.py
index e358d01b..3bf7e362 100644
--- a/test/git/test_git.py
+++ b/test/git/test_git.py
@@ -47,6 +47,7 @@ class TestGit(object):
def test_it_does_not_strip_output_when_using_with_raw_output(self):
# Note: trailing newline
- assert_match(r"^git: 'this-does-not-exist' is not a git-command" + os.linesep,
+ assert_match(r"^git: 'this-does-not-exist' is not a git-command\. See 'git --help'\."
+ + os.linesep,
self.git.this_does_not_exist(with_stderr=True,
with_raw_output=True))