Skip to content

Commit dc3a3d3

Browse files
authored
fix(test): address minor lint issue (#12645)
1 parent 8feaa02 commit dc3a3d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

itests/eth_filter_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ func TestTxReceiptBloom(t *testing.T) {
620620
// We need to add the address bits before comparing.
621621
ethtypes.EthBloomSet(expectedBloom, receipt.To[:])
622622

623-
require.Equal(t, []uint8(expectedBloom), []uint8(receipt.LogsBloom))
623+
require.Equal(t, expectedBloom, []uint8(receipt.LogsBloom))
624624
}
625625

626626
func TestMultipleEvents(t *testing.T) {

0 commit comments

Comments
 (0)