changeset 6882:a0ed1a63e889

hg: drop test that used the illegal tag name '11' Mercurial would fail with RepositoryError: cannot use an integer as a name if trying to create such a tag through a high level api. We happen to use a low level api that doesn't perform that check. Still, the tag is wrong.
author domruf <dominikruf@gmail.com>
date Wed, 16 Aug 2017 22:24:55 +0200
parents 02fcbd2e4d95
children ab80515f3096
files kallithea/tests/vcs/test_tags.py
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/tests/vcs/test_tags.py	Thu Sep 14 02:08:06 2017 +0200
+++ b/kallithea/tests/vcs/test_tags.py	Wed Aug 16 22:24:55 2017 +0200
@@ -43,8 +43,6 @@
     def test_name_with_slash(self):
         self.repo.tag('19/10/11', 'joe')
         self.assertTrue('19/10/11' in self.repo.tags)
-        self.repo.tag('11', 'joe')
-        self.assertTrue('11' in self.repo.tags)
 
 
 # For each backend create test case class