aboutsummaryrefslogtreecommitdiffstats
path: root/rlp
diff options
context:
space:
mode:
Diffstat (limited to 'rlp')
-rw-r--r--rlp/encode.go2
-rw-r--r--rlp/raw_test.go6
2 files changed, 3 insertions, 5 deletions
diff --git a/rlp/encode.go b/rlp/encode.go
index 17cfc6b66..c20897efe 100644
--- a/rlp/encode.go
+++ b/rlp/encode.go
@@ -300,7 +300,6 @@ func (r *encReader) Read(b []byte) (n int, err error) {
}
r.piece = nil
}
- panic("not reached")
}
// next returns the next piece of data to be read.
@@ -650,5 +649,4 @@ func intsize(i uint64) (size int) {
return size
}
}
- panic("not reached")
}
diff --git a/rlp/raw_test.go b/rlp/raw_test.go
index 7d3ca13af..bac09d8d4 100644
--- a/rlp/raw_test.go
+++ b/rlp/raw_test.go
@@ -61,13 +61,13 @@ func TestCountValues(t *testing.T) {
func TestSplitTypes(t *testing.T) {
if _, _, err := SplitString(unhex("C100")); err != ErrExpectedString {
- t.Error("SplitString returned %q, want %q", err, ErrExpectedString)
+ t.Errorf("SplitString returned %q, want %q", err, ErrExpectedString)
}
if _, _, err := SplitList(unhex("01")); err != ErrExpectedList {
- t.Error("SplitString returned %q, want %q", err, ErrExpectedList)
+ t.Errorf("SplitString returned %q, want %q", err, ErrExpectedList)
}
if _, _, err := SplitList(unhex("81FF")); err != ErrExpectedList {
- t.Error("SplitString returned %q, want %q", err, ErrExpectedList)
+ t.Errorf("SplitString returned %q, want %q", err, ErrExpectedList)
}
}