From 195ecc3da4a851734a853af6d739c21b44e0d7f0 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Fri, 26 Jun 2015 10:46:39 +0200 Subject: fix(git-test): assure test does works on linux It shows that the previous implementation was never really working on linux, and thus failed on travis as well for good reason. Closes #303 --- git/test/test_git.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'git/test/test_git.py') diff --git a/git/test/test_git.py b/git/test/test_git.py index a4172f7a..51da5f97 100644 --- a/git/test/test_git.py +++ b/git/test/test_git.py @@ -199,7 +199,8 @@ class TestGit(TestBase): try: remote.fetch() except GitCommandError as err: - assert 'FOO' in str(err) + assert 'ssh-origin' in str(err) + assert err.status == 128 # end # end # end if select.poll exists -- cgit v1.2.1