mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-17 01:13:45 +00:00
common: fix vet
This commit is contained in:
parent
1ce722c919
commit
48bbf2609f
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ func TestIsHex(t *testing.T) {
|
|||
}
|
||||
for _, test := range tests {
|
||||
if ok := isHex(test.input); ok != test.ok {
|
||||
t.Error("isHex(%q) = %v, want %v", test.input, ok, test.ok)
|
||||
t.Errorf("isHex(%q) = %v, want %v", test.input, ok, test.ok)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue