summaryrefslogtreecommitdiff
path: root/test/git/test_stats.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/git/test_stats.py')
-rw-r--r--test/git/test_stats.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/git/test_stats.py b/test/git/test_stats.py
index 0063bb2d..706f29a4 100644
--- a/test/git/test_stats.py
+++ b/test/git/test_stats.py
@@ -11,9 +11,9 @@ class TestStats(object):
def setup(self):
self.repo = Repo(GIT_REPO)
- def test_list_from_string(self):
+ def test__list_from_string(self):
output = fixture('diff_numstat')
- stats = Stats.list_from_string(self.repo, output)
+ stats = Stats._list_from_string(self.repo, output)
assert_equal(2, stats.total['files'])
assert_equal(52, stats.total['lines'])