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_diff.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/git/test_diff.py') diff --git a/test/git/test_diff.py b/test/git/test_diff.py index b9834879..b2339455 100644 --- a/test/git/test_diff.py +++ b/test/git/test_diff.py @@ -13,13 +13,13 @@ class TestDiff(object): def test_list_from_string_new_mode(self): output = fixture('diff_new_mode') - diffs = Diff.list_from_string(self.repo, output) + diffs = Diff._list_from_string(self.repo, output) assert_equal(1, len(diffs)) assert_equal(10, len(diffs[0].diff.splitlines())) def test_diff_with_rename(self): output = fixture('diff_rename') - diffs = Diff.list_from_string(self.repo, output) + diffs = Diff._list_from_string(self.repo, output) assert_equal(1, len(diffs)) -- cgit v1.2.1