update linter settings (#840)

This commit is contained in:
Alessandro Ros
2025-07-26 16:28:03 +02:00
committed by GitHub
parent 63f7ffc3e3
commit 1021950db8
48 changed files with 160 additions and 104 deletions

View File

@@ -20,7 +20,8 @@ func TestDecode(t *testing.T) {
for _, pkt := range ca.pkts {
clone := pkt.Clone()
addFrames, err := d.Decode(pkt)
var addFrames [][]byte
addFrames, err = d.Decode(pkt)
// test input integrity
require.Equal(t, clone, pkt)