Skip to content

Commit

Permalink
Fix linter errors
Browse files Browse the repository at this point in the history
golangci-lint upgrade to v1.56.2 added more checks

Relates to pion/.goassets#201
  • Loading branch information
Sean-Der committed Mar 16, 2024
1 parent 483adc6 commit 8667a1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func FuzzDecoder(f *testing.F) {
f.Add([]byte{})
f.Add(tinyogg)

f.Fuzz(func(t *testing.T, data []byte) {
f.Fuzz(func(_ *testing.T, data []byte) {
var out [1920]byte

ogg, _, err := oggreader.NewWith(bytes.NewReader(data))
Expand Down

0 comments on commit 8667a1a

Please sign in to comment.