diff options
Diffstat (limited to 'integrations')
-rw-r--r-- | integrations/user_test.go | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/integrations/user_test.go b/integrations/user_test.go index 24f2a4d6a8..f7c9acb057 100644 --- a/integrations/user_test.go +++ b/integrations/user_test.go @@ -75,23 +75,41 @@ func TestRenameReservedUsername(t *testing.T) { defer prepareTestEnv(t)() reservedUsernames := []string{ + ".", + "..", + ".well-known", "admin", "api", + "assets", "attachments", + "avatar", "avatars", + "captcha", + "commits", + "debug", + "error", "explore", - "help", - "install", + "favicon.ico", + "ghost", "issues", "login", + "manifest.json", "metrics", + "milestones", + "new", "notifications", "org", "pulls", + "raw", "repo", - "template", - "user", + "repo-avatars", + "robots.txt", "search", + "serviceworker.js", + "ssh_info", + "swagger.v1.json", + "user", + "v2", } session := loginUser(t, "user2") |