chore: remove refs to deprecated io/ioutil

Signed-off-by: guoguangwu <guoguangwu@magic-shield.com>
This commit is contained in:
guoguangwu
2023-10-19 11:05:38 +08:00
parent 958b0671bd
commit 115e48a202
12 changed files with 56 additions and 59 deletions
+2 -3
View File
@@ -18,7 +18,6 @@ package mux
import (
"io"
"io/ioutil"
"net/http"
"net/http/httptest"
"reflect"
@@ -152,7 +151,7 @@ func TestGorillizeReturnsAMuxThatRespectsRouteOrderAB(t *testing.T) {
res := w.Result()
if body, _ := ioutil.ReadAll(res.Body); string(body) != "routeA" {
if body, _ := io.ReadAll(res.Body); string(body) != "routeA" {
t.Errorf("Mux did not respect route order %q", body)
}
}
@@ -180,7 +179,7 @@ func TestGorillizeReturnsAMuxThatRespectsRouteOrderBA(t *testing.T) {
res := w.Result()
if body, _ := ioutil.ReadAll(res.Body); string(body) != "routeB" {
if body, _ := io.ReadAll(res.Body); string(body) != "routeB" {
t.Errorf("Mux did not respect route order %q", body)
}
}