From 637eadce54ca8bbe536bcf7c570c025e28e47129 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Mon, 12 Oct 2009 14:56:47 +0200 Subject: 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 --- test/git/test_stats.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/git/test_stats.py') 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']) -- cgit v1.2.1