From 26709577c565a42a2def5c0dd9e26339ebb9e723 Mon Sep 17 00:00:00 2001 From: Rod Vagg Date: Mon, 28 Oct 2024 14:11:32 +1100 Subject: [PATCH] fix(test): address minor lint issue --- itests/eth_filter_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itests/eth_filter_test.go b/itests/eth_filter_test.go index b278543b6f5..2872717a975 100644 --- a/itests/eth_filter_test.go +++ b/itests/eth_filter_test.go @@ -620,7 +620,7 @@ func TestTxReceiptBloom(t *testing.T) { // We need to add the address bits before comparing. ethtypes.EthBloomSet(expectedBloom, receipt.To[:]) - require.Equal(t, []uint8(expectedBloom), []uint8(receipt.LogsBloom)) + require.Equal(t, expectedBloom, []uint8(receipt.LogsBloom)) } func TestMultipleEvents(t *testing.T) {