summaryrefslogtreecommitdiff
path: root/test/git/test_repo.py
diff options
context:
space:
mode:
authorMichael Trier <mtrier@gmail.com>2008-05-07 20:47:35 -0400
committerMichael Trier <mtrier@gmail.com>2008-05-07 20:47:35 -0400
commit1f66cfbbce58b4b552b041707a12d437cc5f400a (patch)
treea71a31324498ab4eb4d673cdfb2d4b69209379ec /test/git/test_repo.py
parent7156cece3c49544abb6bf7a0c218eb36646fad6d (diff)
downloadgitpython-1f66cfbbce58b4b552b041707a12d437cc5f400a.tar.gz
just more documentation fixes.
Diffstat (limited to 'test/git/test_repo.py')
-rw-r--r--test/git/test_repo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/git/test_repo.py b/test/git/test_repo.py
index d7a2f271..85a7c581 100644
--- a/test/git/test_repo.py
+++ b/test/git/test_repo.py
@@ -262,7 +262,7 @@ class TestRepo(object):
self.repo.alternates = []
assert_true(os.called)
- def test_inspect(self):
+ def test_repr(self):
assert_equal('<GitPython.Repo "%s/.git">' % os.path.abspath(GIT_REPO), repr(self.repo))
@patch(Git, 'method_missing')