diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-06 15:40:35 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-06 15:40:35 +0100 |
commit | 1527b5734c0f2821fd6f38c1a1d70723a4bb88ab (patch) | |
tree | ad0292dc47fc41082cf48851772d6268f1e35c47 /git/test | |
parent | e0c65d6638698f4e3a9e726efca8c0bcf466cd62 (diff) | |
download | gitpython-1527b5734c0f2821fd6f38c1a1d70723a4bb88ab.tar.gz |
fixed test_git
Diffstat (limited to 'git/test')
-rw-r--r-- | git/test/test_git.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/test/test_git.py b/git/test/test_git.py index 8087d6f8..532e6659 100644 --- a/git/test/test_git.py +++ b/git/test/test_git.py @@ -34,11 +34,11 @@ class TestGit(TestBase): def test_call_unpack_args_unicode(self): args = Git._Git__unpack_args(u'Unicode€™') - assert_equal(args, [b'Unicode\xe2\x82\xac\xe2\x84\xa2']) + assert_equal(args, ['Unicode\u20ac\u2122']) def test_call_unpack_args(self): args = Git._Git__unpack_args(['git', 'log', '--', u'Unicode€™']) - assert_equal(args, [b'git', b'log', b'--', b'Unicode\xe2\x82\xac\xe2\x84\xa2']) + assert_equal(args, ['git', 'log', '--', 'Unicode\u20ac\u2122']) @raises(GitCommandError) def test_it_raises_errors(self): |