aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil
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
parentafe83af219c2146e022f6665cf30097b582d3e79 (diff)
downloadgo-tangerine-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.tar
go-tangerine-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.tar.gz
go-tangerine-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.tar.bz2
go-tangerine-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.tar.lz
go-tangerine-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.tar.xz
go-tangerine-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.tar.zst
go-tangerine-c03bf14e02fe7f13944b71f5370b1d7bd5978ffe.zip
Fixed some tests
Diffstat (limited to 'ethutil')
-rw-r--r--ethutil/common_test.go2
-rw-r--r--ethutil/rlp_test.go15
2 files changed, 5 insertions, 12 deletions
diff --git a/ethutil/common_test.go b/ethutil/common_test.go
index b5c733ff3..8031f08ab 100644
--- a/ethutil/common_test.go
+++ b/ethutil/common_test.go
@@ -26,7 +26,7 @@ func TestCommon(t *testing.T) {
t.Error("Got", szabo)
}
- if vito != "10 Vito" {
+ if vito != "10 Vita" {
t.Error("Got", vito)
}
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) {