aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/rlp_test.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-10 08:01:09 +0800
committerobscuren <geffobscura@gmail.com>2014-05-10 08:01:09 +0800
commitc03bf14e02fe7f13944b71f5370b1d7bd5978ffe (patch)
tree4e0b563bfa1c44088fbf6d2553378288ea59b564 /ethutil/rlp_test.go
parentafe83af219c2146e022f6665cf30097b582d3e79 (diff)
downloaddexon-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.tar
dexon-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.tar.gz
dexon-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.tar.bz2
dexon-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.tar.lz
dexon-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.tar.xz
dexon-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.tar.zst
dexon-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.zip
Fixed some tests
Diffstat (limited to 'ethutil/rlp_test.go')
-rw-r--r--ethutil/rlp_test.go15
1 files changed, 4 insertions, 11 deletions
diff --git a/ethutil/rlp_test.go b/ethutil/rlp_test.go
index 9e8127aab..095c01ecc 100644
--- a/ethutil/rlp_test.go
+++ b/ethutil/rlp_test.go
@@ -2,7 +2,6 @@ package ethutil
import (
"bytes"
- "fmt"
"math/big"
"reflect"
"testing"
@@ -56,15 +55,6 @@ func TestValue(t *testing.T) {
}
}
-func TestEncodeDecodeMaran(t *testing.T) {
- b := NewValue([]interface{}{"dog", 15, []interface{}{"cat", "cat", []interface{}{}}, 1024, "tachikoma"})
- a := b.Encode()
- fmt.Println("voor maran", a)
- f, i := Decode(a, 0)
- fmt.Println("voor maran 2", f)
- fmt.Println(i)
-}
-
func TestEncode(t *testing.T) {
strRes := "\x83dog"
bytes := Encode("dog")
@@ -131,7 +121,10 @@ func TestEncodeDecodeBytes(t *testing.T) {
func TestEncodeZero(t *testing.T) {
b := NewValue(0).Encode()
- fmt.Println(b)
+ exp := []byte{0xc0}
+ if bytes.Compare(b, exp) == 0 {
+ t.Error("Expected", exp, "got", b)
+ }
}
func BenchmarkEncodeDecode(b *testing.B) {