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_repo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/git/test_repo.py') diff --git a/test/git/test_repo.py b/test/git/test_repo.py index 989dd4fe..669a8f62 100644 --- a/test/git/test_repo.py +++ b/test/git/test_repo.py @@ -256,7 +256,7 @@ class TestRepo(object): def test_repr(self): path = os.path.join(os.path.abspath(GIT_REPO), '.git') - assert_equal('' % path, repr(self.repo)) + assert_equal('' % path, repr(self.repo)) @patch(Git, '_call_process') def test_log(self, git): -- cgit v1.2.1