aboutsummaryrefslogtreecommitdiff
path: root/test/git/test_tag.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-11 20:21:22 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-11 20:21:22 +0200
commit9a119924bd314934158515a1a5f5877be63f6f91 (patch)
tree927fbe62fe20c62eedf7beed91ac80b10dc60774 /test/git/test_tag.py
parent15b9129ec639112e94ea96b6a395ad9b149515d1 (diff)
downloadGitPython-9a119924bd314934158515a1a5f5877be63f6f91.tar.gz
GitPython-9a119924bd314934158515a1a5f5877be63f6f91.zip
fixed issue in Ref.name implementation which would not handle components properly
Diffstat (limited to 'test/git/test_tag.py')
-rw-r--r--test/git/test_tag.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/git/test_tag.py b/test/git/test_tag.py
index 52f7898c..fe3f78cc 100644
--- a/test/git/test_tag.py
+++ b/test/git/test_tag.py
@@ -18,7 +18,7 @@ class TestTag(object):
tag_object_refs = list()
for tag in self.repo.tags:
assert "refs/tags" in tag.path
- assert "/" not in tag.name
+ assert tag.name
assert isinstance( tag.commit, Commit )
if tag.tag is not None:
tag_object_refs.append( tag )