aboutsummaryrefslogtreecommitdiff
path: root/http_test.go
diff options
context:
space:
mode:
authorGravatar Oleksandr Redko <oleksandr.red+github@gmail.com> 2024-03-02 17:19:05 +0200
committerGravatar GitHub <noreply@github.com> 2024-03-02 16:19:05 +0100
commit3166afd835a00486c918f1d3149696855897c923 (patch)
tree9ba64d0f8f16688512cf83a77787f70b0f56b81c /http_test.go
parentchore(deps): bump golang.org/x/crypto from 0.19.0 to 0.20.0 (#1725) (diff)
downloadfasthttp-3166afd835a00486c918f1d3149696855897c923.tar.gz
fasthttp-3166afd835a00486c918f1d3149696855897c923.tar.bz2
fasthttp-3166afd835a00486c918f1d3149696855897c923.zip
Enable few gocritic checks; fix up issues (#1728)
Diffstat (limited to 'http_test.go')
-rw-r--r--http_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/http_test.go b/http_test.go
index 5e2ce54..3e69b2d 100644
--- a/http_test.go
+++ b/http_test.go
@@ -2658,8 +2658,8 @@ func TestRequestRawBodyCopyTo(t *testing.T) {
}
type testReader struct {
- read chan (int)
- cb chan (struct{})
+ read chan int
+ cb chan struct{}
onClose func() error
}