diff options
Diffstat (limited to 'test/git/test_repo.py')
-rw-r--r-- | test/git/test_repo.py | 2 |
1 files changed, 1 insertions, 1 deletions
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('<GitPython.Repo "%s">' % path, repr(self.repo)) + assert_equal('<git.Repo "%s">' % path, repr(self.repo)) @patch(Git, '_call_process') def test_log(self, git): |