diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-06 14:11:48 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-06 14:11:48 +0100 |
commit | 4cfc682ff87d3629b31e0196004d1954810b206c (patch) | |
tree | 86db6980ef91ba81b2f0fc47c46f9cb4d2e21616 /git/test/test_base.py | |
parent | 8f219b53f339fc0133800fac96deaf75eb4f9bf6 (diff) | |
download | gitpython-4cfc682ff87d3629b31e0196004d1954810b206c.tar.gz |
test_submodule works
Diffstat (limited to 'git/test/test_base.py')
-rw-r--r-- | git/test/test_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/test_base.py b/git/test/test_base.py index edacbd80..9ae2dd2b 100644 --- a/git/test/test_base.py +++ b/git/test/test_base.py @@ -86,7 +86,7 @@ class TestBase(TestBase): assert base.Object in get_object_type_by_name(tname).mro() # END for each known type - assert_raises(ValueError, get_object_type_by_name, "doesntexist") + assert_raises(ValueError, get_object_type_by_name, b"doesntexist") def test_object_resolution(self): # objects must be resolved to shas so they compare equal |