fix:parser_test remove impossible condition (#44)
This commit is contained in:
parent
5a69d9ba20
commit
df3edccd7f
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ func FuzzFromBytes(f *testing.F) {
|
|||
if err != nil {
|
||||
return
|
||||
}
|
||||
if err != nil && !isExpectedError(err) {
|
||||
if !isExpectedError(err) {
|
||||
t.Errorf("Unexpected error: %v", err)
|
||||
}
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue