From b00f3689aa19938c10576580fbfc9243d9f3866c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steve=20Fr=C3=A9cinaux?= Date: Tue, 16 Sep 2008 08:08:47 +0200 Subject: Replace GitPython with git in repr() outputs. The imported module is called git (as in "import git"), so it's less confusing to do so than to call everything GitPython.something. --- test/git/test_tag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/git/test_tag.py') diff --git a/test/git/test_tag.py b/test/git/test_tag.py index 2f915b8d..3d33d7e3 100644 --- a/test/git/test_tag.py +++ b/test/git/test_tag.py @@ -30,7 +30,7 @@ class TestTag(object): git.return_value = fixture('for_each_ref') tag = self.repo.tags[0] - assert_equal('' % tag.name, repr(tag)) + assert_equal('' % tag.name, repr(tag)) assert_true(git.called) assert_equal(git.call_args, (('for_each_ref', 'refs/tags'), {'sort': 'committerdate', 'format': '%(refname)%00%(objectname)'})) -- cgit v1.2.3