diff options
author | Igor Drozdov <idrozdov@gitlab.com> | 2021-09-08 08:52:53 +0000 |
---|---|---|
committer | Igor Drozdov <idrozdov@gitlab.com> | 2021-09-08 08:52:53 +0000 |
commit | 07bbfd279bc236229d95942372370b955db08b75 (patch) | |
tree | 41f0f8217f5355ba86aae8b352633fbb80e21a1a /internal/command/shared | |
parent | 81e580997d07a7a9d3dddbd42cbb39f305c63b8b (diff) | |
parent | 087c010c476ed6c009b6c94a76a7e9db3b9d3fdd (diff) | |
download | gitlab-shell-07bbfd279bc236229d95942372370b955db08b75.tar.gz |
Merge branch 'remove/ioutil' into 'main'
refactor: move away from ioutil (deprecated)
See merge request gitlab-org/gitlab-shell!511
Diffstat (limited to 'internal/command/shared')
-rw-r--r-- | internal/command/shared/accessverifier/accessverifier_test.go | 4 | ||||
-rw-r--r-- | internal/command/shared/customaction/customaction_test.go | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/internal/command/shared/accessverifier/accessverifier_test.go b/internal/command/shared/accessverifier/accessverifier_test.go index 8e0b5f9..54904e0 100644 --- a/internal/command/shared/accessverifier/accessverifier_test.go +++ b/internal/command/shared/accessverifier/accessverifier_test.go @@ -4,7 +4,7 @@ import ( "bytes" "context" "encoding/json" - "io/ioutil" + "io" "net/http" "testing" @@ -27,7 +27,7 @@ func setup(t *testing.T) (*Command, *bytes.Buffer, *bytes.Buffer) { { Path: "/api/v4/internal/allowed", Handler: func(w http.ResponseWriter, r *http.Request) { - b, err := ioutil.ReadAll(r.Body) + b, err := io.ReadAll(r.Body) require.NoError(t, err) var requestBody *accessverifier.Request diff --git a/internal/command/shared/customaction/customaction_test.go b/internal/command/shared/customaction/customaction_test.go index d3e794c..b26ce81 100644 --- a/internal/command/shared/customaction/customaction_test.go +++ b/internal/command/shared/customaction/customaction_test.go @@ -4,7 +4,7 @@ import ( "bytes" "context" "encoding/json" - "io/ioutil" + "io" "net/http" "testing" @@ -23,7 +23,7 @@ func TestExecuteEOFSent(t *testing.T) { { Path: "/geo/proxy/info_refs_receive_pack", Handler: func(w http.ResponseWriter, r *http.Request) { - b, err := ioutil.ReadAll(r.Body) + b, err := io.ReadAll(r.Body) require.NoError(t, err) var request *Request @@ -39,7 +39,7 @@ func TestExecuteEOFSent(t *testing.T) { { Path: "/geo/proxy/receive_pack", Handler: func(w http.ResponseWriter, r *http.Request) { - b, err := ioutil.ReadAll(r.Body) + b, err := io.ReadAll(r.Body) require.NoError(t, err) var request *Request @@ -92,7 +92,7 @@ func TestExecuteNoEOFSent(t *testing.T) { { Path: "/geo/proxy/info_refs_upload_pack", Handler: func(w http.ResponseWriter, r *http.Request) { - b, err := ioutil.ReadAll(r.Body) + b, err := io.ReadAll(r.Body) require.NoError(t, err) var request *Request @@ -108,7 +108,7 @@ func TestExecuteNoEOFSent(t *testing.T) { { Path: "/geo/proxy/upload_pack", Handler: func(w http.ResponseWriter, r *http.Request) { - b, err := ioutil.ReadAll(r.Body) + b, err := io.ReadAll(r.Body) require.NoError(t, err) var request *Request |