Skip to content

Commit 8cef278

Browse files
author
Mateusz
committed
test: bound ACP handshake fuzz input
1 parent bc38711 commit 8cef278

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/plugins/backends/acp/fuzz_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func FuzzMapSessionUpdateToEvents(f *testing.F) {
3333
func FuzzMergeHandshakeProfileExtensions(f *testing.F) {
3434
f.Add([]byte(`{"acp.session_id":"\"sid\""}`))
3535
f.Fuzz(func(t *testing.T, raw []byte) {
36-
raw = testkit.CapBytes(raw, 128<<10)
36+
raw = testkit.CapBytes(raw, 8<<10)
3737
var ext map[string]json.RawMessage
3838
if err := json.Unmarshal(raw, &ext); err != nil {
3939
return

0 commit comments

Comments
 (0)