cleanup(all): stop using deprecated ioutil functions (#381)
Spotted while working on https://github.com/ooni/probe/issues/1417 See https://golang.org/pkg/io/ioutil/
This commit is contained in:
parent
721ce95315
commit
fd5405ade1
25 changed files with 64 additions and 72 deletions
|
|
@ -3,7 +3,7 @@ package httptransport_test
|
|||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"io/ioutil"
|
||||
"io"
|
||||
"net/http"
|
||||
"strings"
|
||||
"testing"
|
||||
|
|
@ -256,7 +256,7 @@ func TestSaverBodySuccess(t *testing.T) {
|
|||
}
|
||||
return &http.Response{
|
||||
StatusCode: 501,
|
||||
Body: ioutil.NopCloser(strings.NewReader("abad1dea")),
|
||||
Body: io.NopCloser(strings.NewReader("abad1dea")),
|
||||
}, nil
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue