rlp: fix typo in decode test message #32554 (#1514)

Co-authored-by: Forostovec <ilonaforostovec22@gmail.com>
This commit is contained in:
Daniel Liu 2025-09-17 08:47:42 +08:00 committed by GitHub
parent 33b4940d56
commit 0ac2caf2c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -350,7 +350,7 @@ func TestDecodeErrors(t *testing.T) {
}
if err := Decode(r, new(uint)); err != io.EOF {
t.Errorf("Decode(r, new(int)) error mismatch, got %q, want %q", err, io.EOF)
t.Errorf("Decode(r, new(uint)) error mismatch, got %q, want %q", err, io.EOF)
}
}