Merge branch v2.10 into v3.0

This commit is contained in:
Fernandez Ludovic 2023-03-21 12:00:46 +01:00
commit 7875826bd9
387 changed files with 19080 additions and 976 deletions

View file

@ -3,8 +3,8 @@ package buffering
import (
"bytes"
"context"
"crypto/rand"
"math"
"math/rand"
"net/http"
"net/http/httptest"
"testing"
@ -16,7 +16,7 @@ import (
func TestBuffering(t *testing.T) {
payload := make([]byte, math.MaxInt8)
rand.Read(payload)
_, _ = rand.Read(payload)
testCases := []struct {
desc string