diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-06-26 10:46:39 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-06-26 10:46:39 +0200 |
commit | 195ecc3da4a851734a853af6d739c21b44e0d7f0 (patch) | |
tree | dfd33c51eff51f5a80de1756e908ad30d061b5de /git/test/test_git.py | |
parent | f2efb814d0c3720f018f01329e43d9afa11ddf54 (diff) | |
download | gitpython-195ecc3da4a851734a853af6d739c21b44e0d7f0.tar.gz |
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
Diffstat (limited to 'git/test/test_git.py')
-rw-r--r-- | git/test/test_git.py | 3 |
1 files changed, 2 insertions, 1 deletions
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 |