diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-06 14:09:17 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-06 14:09:17 +0100 |
commit | 8f219b53f339fc0133800fac96deaf75eb4f9bf6 (patch) | |
tree | cf067d623f5491d13c32ac2e0bc5755bf02f2b91 | |
parent | a05e49d2419d65c59c65adf5cd8c05f276550e1d (diff) | |
download | gitpython-8f219b53f339fc0133800fac96deaf75eb4f9bf6.tar.gz |
test_stat works
-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']) |