mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
fix lint issue
This commit is contained in:
parent
04556db2b5
commit
8cba845276
1 changed files with 1 additions and 1 deletions
|
|
@ -1287,7 +1287,7 @@ func TestFillBlobTransaction(t *testing.T) {
|
|||
if err != nil {
|
||||
t.Fatalf("failed to encode computed sidecar: %v", err)
|
||||
}
|
||||
if bytes.Compare(have, want) != 0 {
|
||||
if !bytes.Equal(have, want) {
|
||||
t.Errorf("blob sidecar mismatch. Have: %s, want: %s", have, want)
|
||||
}
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue