Skip to content

Commit 2a3f4ce

Browse files
authored
rlp: fix typo in decode test message (#32554)
1 parent b381804 commit 2a3f4ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rlp/decode_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ func TestDecodeErrors(t *testing.T) {
350350
}
351351

352352
if err := Decode(r, new(uint)); err != io.EOF {
353-
t.Errorf("Decode(r, new(int)) error mismatch, got %q, want %q", err, io.EOF)
353+
t.Errorf("Decode(r, new(uint)) error mismatch, got %q, want %q", err, io.EOF)
354354
}
355355
}
356356

0 commit comments

Comments
 (0)