aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/fuzzer/fuzzer_test.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2025-12-19 12:52:30 +0100
committerAleksandr Nogikh <nogikh@google.com>2025-12-22 02:13:00 +0000
commita83befa0d111a0ba6fac52d763e93c76a2ef94d4 (patch)
tree7d3c28b24229429936a631e8ceb24135856b257d /pkg/fuzzer/fuzzer_test.go
parent8fb7048c5117ccb592deb5e8e4a62027e6d399cf (diff)
all: use any instead of interface{}
Any is the preferred over interface{} now in Go.
Diffstat (limited to 'pkg/fuzzer/fuzzer_test.go')
-rw-r--r--pkg/fuzzer/fuzzer_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/fuzzer/fuzzer_test.go b/pkg/fuzzer/fuzzer_test.go
index b12d7634b..971e6d683 100644
--- a/pkg/fuzzer/fuzzer_test.go
+++ b/pkg/fuzzer/fuzzer_test.go
@@ -49,7 +49,7 @@ func TestFuzz(t *testing.T) {
fuzzer := NewFuzzer(ctx, &Config{
Debug: true,
Corpus: corpus.NewMonitoredCorpus(ctx, corpusUpdates),
- Logf: func(level int, msg string, args ...interface{}) {
+ Logf: func(level int, msg string, args ...any) {
if level > 1 {
return
}