Update path matching regex to support dots
This commit is contained in:
parent
e699739b23
commit
c5fa12329c
3 changed files with 3 additions and 3 deletions
|
@ -771,7 +771,7 @@ class TestGetRepository(ApiTestCase):
|
|||
def test_getrepo_badnames(self):
|
||||
self.login(ADMIN_ACCESS_USER)
|
||||
|
||||
bad_names = ['logs', 'build', 'tokens']
|
||||
bad_names = ['logs', 'build', 'tokens', 'foo.bar', 'foo-bar', 'foo_bar']
|
||||
|
||||
# For each bad name, create the repo.
|
||||
for bad_name in bad_names:
|
||||
|
|
Reference in a new issue