We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc38711 commit 8cef278Copy full SHA for 8cef278
1 file changed
internal/plugins/backends/acp/fuzz_test.go
@@ -33,7 +33,7 @@ func FuzzMapSessionUpdateToEvents(f *testing.F) {
33
func FuzzMergeHandshakeProfileExtensions(f *testing.F) {
34
f.Add([]byte(`{"acp.session_id":"\"sid\""}`))
35
f.Fuzz(func(t *testing.T, raw []byte) {
36
- raw = testkit.CapBytes(raw, 128<<10)
+ raw = testkit.CapBytes(raw, 8<<10)
37
var ext map[string]json.RawMessage
38
if err := json.Unmarshal(raw, &ext); err != nil {
39
return
0 commit comments