diff options
author | Michael Trier <mtrier@gmail.com> | 2008-05-07 20:47:35 -0400 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-05-07 20:47:35 -0400 |
commit | 1f66cfbbce58b4b552b041707a12d437cc5f400a (patch) | |
tree | a71a31324498ab4eb4d673cdfb2d4b69209379ec /test/git/test_repo.py | |
parent | 7156cece3c49544abb6bf7a0c218eb36646fad6d (diff) | |
download | gitpython-1f66cfbbce58b4b552b041707a12d437cc5f400a.tar.gz |
just more documentation fixes.
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 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') |