diff options
-rw-r--r-- | git/test/test_stats.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/test/test_stats.py b/git/test/test_stats.py index c4535b75..eb8b9dda 100644 --- a/git/test/test_stats.py +++ b/git/test/test_stats.py @@ -10,12 +10,12 @@ from git.test.lib import ( assert_equal ) from git import Stats - +from git.compat import defenc class TestStats(TestBase): def test_list_from_string(self): - output = fixture('diff_numstat') + output = fixture('diff_numstat').decode(defenc) stats = Stats._list_from_string(self.rorepo, output) assert_equal(2, stats.total['files']) |