diff options
author | Chongyi Zheng <harryzheng25@gmail.com> | 2022-12-02 17:06:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-02 17:06:23 -0500 |
commit | 8698458f48eafeab21014db544aa7160368856e1 (patch) | |
tree | cc324e8f8856412ce7e715dacacb6301a2857004 /tests/integration/rename_branch_test.go | |
parent | 21bcb929260d1e41fd84c650aeea552f540d0981 (diff) | |
download | gitea-8698458f48eafeab21014db544aa7160368856e1.tar.gz gitea-8698458f48eafeab21014db544aa7160368856e1.zip |
Remove deprecated packages & staticcheck fixes (#22012)
`ioutil` is deprecated and should use `io` instead
Diffstat (limited to 'tests/integration/rename_branch_test.go')
-rw-r--r-- | tests/integration/rename_branch_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/rename_branch_test.go b/tests/integration/rename_branch_test.go index d8434c28bb..9a55193ccf 100644 --- a/tests/integration/rename_branch_test.go +++ b/tests/integration/rename_branch_test.go @@ -35,7 +35,7 @@ func TestRenameBranch(t *testing.T) { // check old branch link req = NewRequestWithValues(t, "GET", "/user2/repo1/src/branch/master/README.md", postData) resp = session.MakeRequest(t, req, http.StatusSeeOther) - location := resp.HeaderMap.Get("Location") + location := resp.Header().Get("Location") assert.Equal(t, "/user2/repo1/src/branch/main/README.md", location) // check db |