summaryrefslogtreecommitdiffstats
path: root/integrations/nonascii_branches_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'integrations/nonascii_branches_test.go')
-rw-r--r--integrations/nonascii_branches_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/integrations/nonascii_branches_test.go b/integrations/nonascii_branches_test.go
index f2992ecc1f..5ab7b8526a 100644
--- a/integrations/nonascii_branches_test.go
+++ b/integrations/nonascii_branches_test.go
@@ -18,7 +18,7 @@ func testSrcRouteRedirect(t *testing.T, session *TestSession, user, repo, route,
// Make request
req := NewRequest(t, "GET", path.Join(prefix, route))
- resp := session.MakeRequest(t, req, http.StatusFound)
+ resp := session.MakeRequest(t, req, http.StatusSeeOther)
// Check Location header
location := resp.HeaderMap.Get("Location")
@@ -37,7 +37,7 @@ func setDefaultBranch(t *testing.T, session *TestSession, user, repo, branch str
"action": "default_branch",
"branch": branch,
})
- session.MakeRequest(t, req, http.StatusFound)
+ session.MakeRequest(t, req, http.StatusSeeOther)
}
func TestNonasciiBranches(t *testing.T) {