Update path matching regex to support dots

This commit is contained in:
Joseph Schorr 2014-03-11 14:42:53 -04:00
parent e699739b23
commit c5fa12329c
3 changed files with 3 additions and 3 deletions

View file

@ -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: