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_blob.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/git/test_blob.py') diff --git a/test/git/test_blob.py b/test/git/test_blob.py index c4d8036c..2f43e82f 100644 --- a/test/git/test_blob.py +++ b/test/git/test_blob.py @@ -86,4 +86,4 @@ class TestBlob(object): def test_should_return_appropriate_representation(self): blob = Blob(self.repo, **{'id': 'abc'}) - assert_equal('', repr(blob)) + assert_equal('', repr(blob)) -- cgit v1.2.1