Replace uses of ioutil with io

This commit is contained in:
Adnan Maolood 2021-02-28 21:38:36 -05:00
parent 0e87d64ffc
commit 19f1d6693e
1 changed files with 2 additions and 3 deletions

View File

@ -2,7 +2,6 @@ package gemini
import (
"io"
"io/ioutil"
"strings"
"testing"
)
@ -92,7 +91,7 @@ func TestReadWriteResponse(t *testing.T) {
for _, test := range tests {
t.Logf("%#v", test.Raw)
resp, err := ReadResponse(ioutil.NopCloser(strings.NewReader(test.Raw)))
resp, err := ReadResponse(io.NopCloser(strings.NewReader(test.Raw)))
if err != test.Err {
t.Errorf("expected err = %v, got %v", test.Err, err)
}
@ -106,7 +105,7 @@ func TestReadWriteResponse(t *testing.T) {
if resp.Meta != test.Meta {
t.Errorf("expected meta = %s, got %s", test.Meta, resp.Meta)
}
b, _ := ioutil.ReadAll(resp.Body)
b, _ := io.ReadAll(resp.Body)
body := string(b)
if body != test.Body {
t.Errorf("expected body = %#v, got %#v", test.Body, body)