fix lint error

This commit is contained in:
Danno Ferrin 2025-01-21 11:19:30 -07:00
parent 6915628f82
commit e673af9acf

View file

@ -720,7 +720,7 @@ func TestEvmRunRegEx(t *testing.T) {
t.Fatalf("test %d: could not compile regular expression: %v", i, err) t.Fatalf("test %d: could not compile regular expression: %v", i, err)
} }
if !re.MatchString(have) { if !re.MatchString(have) {
t.Fatalf("test %d, output wrong, have \n%v\nwant\n%v\n", i, string(have), re) t.Fatalf("test %d, output wrong, have \n%v\nwant\n%v\n", i, have, re)
} }
} }
} }