diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2014-11-13 18:31:17 +0100 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2014-11-13 18:31:17 +0100 |
| commit | 641b64c9f48139cf06774805d32892012fb9b82d (patch) | |
| tree | 144b400955067f0d4297fb06d2af6c58eac2cfb1 /gitdb/test | |
| parent | bf942a913d69eb2079f9e82888aaccf2f6222643 (diff) | |
| download | gitdb-641b64c9f48139cf06774805d32892012fb9b82d.tar.gz | |
Now tests work consistently in py2 and 3
It's a nice way of saying that there is still one failing, consistently.
Diffstat (limited to 'gitdb/test')
| -rw-r--r-- | gitdb/test/db/test_pack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitdb/test/db/test_pack.py b/gitdb/test/db/test_pack.py index 1177cf9..963a71a 100644 --- a/gitdb/test/db/test_pack.py +++ b/gitdb/test/db/test_pack.py @@ -73,4 +73,4 @@ class TestPackDB(TestDBBase): # assert num_ambiguous # non-existing - self.failUnlessRaises(BadObject, pdb.partial_to_complete_sha, "\0\0", 4) + self.failUnlessRaises(BadObject, pdb.partial_to_complete_sha, b'\0\0', 4) |
