Skip to content

Commit 27886ea

Browse files
committed
chore: placate the linter
1 parent 6bc6fa6 commit 27886ea

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

core/types/block.libevm_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ func TestHeaderHooks(t *testing.T) {
9393
require.NoErrorf(t, rlp.DecodeBytes(input, hdr), "rlp.DecodeBytes(%#x)", input)
9494

9595
assert.Equal(t, input, stub.gotRawRLPToDecode, "raw RLP received by hooks")
96-
assert.Equalf(t, &stub.setHeaderToOnDecode, hdr, "%T after RLP decoding with hook")
96+
assert.Equalf(t, &stub.setHeaderToOnDecode, hdr, "%T after RLP decoding with hook", hdr)
9797
})
9898

9999
t.Run("error propagation", func(t *testing.T) {

core/types/rlp_backwards_compat.libevm_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ func TestHeaderRLPBackwardsCompatibility(t *testing.T) {
5555
}
5656
}
5757

58+
//nolint:thelper
5859
func testHeaderRLPBackwardsCompatibility(t *testing.T) {
5960
// This is a deliberate change-detector test that locks in backwards
6061
// compatibility of RLP encoding.

0 commit comments

Comments
 (0)