Skip to content

Commit 1ebcae8

Browse files
ARR4Nqdm12
andauthored
Update core/types/rlp_backwards_compat.libevm_test.go
Co-authored-by: Quentin McGaw <[email protected]> Signed-off-by: Arran Schlosberg <[email protected]>
1 parent 0eed36d commit 1ebcae8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/types/rlp_backwards_compat.libevm_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ func testBodyRLPBackwardsCompatibility(t *testing.T, seed uint64) {
184184

185185
t.Run("Encode", func(t *testing.T) {
186186
got, err := rlp.EncodeToBytes(body)
187-
require.NoErrorf(t, err, "rlp.EncodeToBytes(%T)", body)
188-
assert.Equalf(t, wantRLP, got, "rlp.EncodeToBytes(%T)", body)
187+
require.NoErrorf(t, err, "rlp.EncodeToBytes(%#v)", body)
188+
assert.Equalf(t, wantRLP, got, "rlp.EncodeToBytes(%#v)", body)
189189
})
190190

191191
t.Run("Decode", func(t *testing.T) {

0 commit comments

Comments
 (0)