aboutsummaryrefslogtreecommitdiff
path: root/http_test.go
diff options
context:
space:
mode:
authorGravatar Aoang <aoang@x2oe.com> 2022-09-16 03:28:25 +0800
committerGravatar GitHub <noreply@github.com> 2022-09-15 22:28:25 +0300
commita696949f6c1b7eec6d6529f8e93612e65d0f5ec2 (patch)
tree02ec801ab0c707cfdee13991926d83ac2ceaaece /http_test.go
parentImprove isTLSAlready check (diff)
downloadfasthttp-a696949f6c1b7eec6d6529f8e93612e65d0f5ec2.tar.gz
fasthttp-a696949f6c1b7eec6d6529f8e93612e65d0f5ec2.tar.bz2
fasthttp-a696949f6c1b7eec6d6529f8e93612e65d0f5ec2.zip
Deprecate Go 1.15 (#1379)
* Dropping support for 1.15. * Replaces Go 1.16 Deprecated functions * Update test build flag * Fix import sort and comment * Update github.com/klauspost/compress to v1.15.9 https://github.com/klauspost/compress improved performance and changed Minimum version is 1.16, this should be the final supported release for Go 1.16 (https://github.com/klauspost/compress/commit/6d0019a95afa3221f7522d1f2eed0033b5e79470) .
Diffstat (limited to 'http_test.go')
-rw-r--r--http_test.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/http_test.go b/http_test.go
index 071d177..58bc8cb 100644
--- a/http_test.go
+++ b/http_test.go
@@ -7,7 +7,6 @@ import (
"errors"
"fmt"
"io"
- "io/ioutil"
"math"
"mime/multipart"
"net/http"
@@ -655,7 +654,7 @@ tailfoobar`
t.Fatalf("unexpected error: %v", err)
}
- tail, err := ioutil.ReadAll(br)
+ tail, err := io.ReadAll(br)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
@@ -1241,7 +1240,7 @@ func TestRequestReadPostNoBody(t *testing.T) {
t.Fatalf("unexpected content-length: %d. Expecting 0", r.Header.ContentLength())
}
- tail, err := ioutil.ReadAll(br)
+ tail, err := io.ReadAll(br)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
@@ -1272,7 +1271,7 @@ func TestRequestContinueReadBody(t *testing.T) {
t.Fatalf("unexpected body %q. Expecting %q", body, "abcde")
}
- tail, err := ioutil.ReadAll(br)
+ tail, err := io.ReadAll(br)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}