summaryrefslogtreecommitdiff
path: root/test/git/test_stats.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-12 14:56:47 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-12 14:56:47 +0200
commit637eadce54ca8bbe536bcf7c570c025e28e47129 (patch)
treec8691e6358e2b626b42c19bb6bb893e83464b40c /test/git/test_stats.py
parentf2834177c0fdf6b1af659e460fd3348f468b8ab0 (diff)
downloadgitpython-637eadce54ca8bbe536bcf7c570c025e28e47129.tar.gz
renamed from_string and list_from_string to _from_string and _list_from_string to indicate their new status as private method, adjusted all callers respectively
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'])