diff options
| author | Steve Frécinaux <code@istique.net> | 2008-09-16 08:08:47 +0200 |
|---|---|---|
| committer | Steve Frécinaux <code@istique.net> | 2008-09-17 08:08:09 +0200 |
| commit | b00f3689aa19938c10576580fbfc9243d9f3866c (patch) | |
| tree | c9575089d08f9c1f701c7fdb5305b38142131975 /test/git/test_tag.py | |
| parent | 5de63b40dbb8fef7f2f46e42732081ef6d0d8866 (diff) | |
| download | GitPython-b00f3689aa19938c10576580fbfc9243d9f3866c.tar.gz GitPython-b00f3689aa19938c10576580fbfc9243d9f3866c.zip | |
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.
Diffstat (limited to 'test/git/test_tag.py')
| -rw-r--r-- | test/git/test_tag.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/git/test_tag.py b/test/git/test_tag.py index 2f915b8d..3d33d7e3 100644 --- a/test/git/test_tag.py +++ b/test/git/test_tag.py @@ -30,7 +30,7 @@ class TestTag(object): git.return_value = fixture('for_each_ref') tag = self.repo.tags[0] - assert_equal('<GitPython.Tag "%s">' % tag.name, repr(tag)) + assert_equal('<git.Tag "%s">' % tag.name, repr(tag)) assert_true(git.called) assert_equal(git.call_args, (('for_each_ref', 'refs/tags'), {'sort': 'committerdate', 'format': '%(refname)%00%(objectname)'})) |
