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_head.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/git/test_head.py') diff --git a/test/git/test_head.py b/test/git/test_head.py index d3af3d6b..ecac13c8 100644 --- a/test/git/test_head.py +++ b/test/git/test_head.py @@ -17,7 +17,7 @@ class TestHead(object): head = self.repo.heads[0] - assert_equal('' % head.name, repr(head)) + assert_equal('' % head.name, repr(head)) assert_true(git.called) assert_equal(git.call_args, (('for_each_ref', 'refs/heads'), {'sort': 'committerdate', 'format': '%(refname)%00%(objectname)'})) -- cgit v1.2.1