diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2016-06-13 10:21:04 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2016-06-13 10:21:04 +0200 |
commit | d5739cd466f77a60425bd2860895799f7c9359d9 (patch) | |
tree | 86c019c04ea6e15b685b34517d14a623ca1e332d /git/test/test_git.py | |
parent | 17020d8ac806faf6ffa178587a97625589ba21eb (diff) | |
download | gitpython-d5739cd466f77a60425bd2860895799f7c9359d9.tar.gz |
fix(cmd): allow any kind of status message
I see no need in verifying the status code.
It's enough to just get the error.
Diffstat (limited to 'git/test/test_git.py')
-rw-r--r-- | git/test/test_git.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/git/test/test_git.py b/git/test/test_git.py index 2d6ca8bc..b46ac72d 100644 --- a/git/test/test_git.py +++ b/git/test/test_git.py @@ -210,7 +210,6 @@ class TestGit(TestBase): assert err.status == 128 else: assert 'FOO' in str(err) - assert err.status == 2 # end # end # end if select.poll exists |