From 1527b5734c0f2821fd6f38c1a1d70723a4bb88ab Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Tue, 6 Jan 2015 15:40:35 +0100 Subject: fixed test_git --- git/test/test_git.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'git/test/test_git.py') 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): -- cgit v1.2.3