From 991993357c902eaab56726bef97e7494674aa5e5 Mon Sep 17 00:00:00 2001 From: Maran Date: Sat, 14 Mar 2015 11:39:35 +0100 Subject: DRY up the use of fromHex and put it in ethutil --- rpc/util_test.go | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 rpc/util_test.go (limited to 'rpc/util_test.go') diff --git a/rpc/util_test.go b/rpc/util_test.go deleted file mode 100644 index b0a4979b5..000000000 --- a/rpc/util_test.go +++ /dev/null @@ -1,25 +0,0 @@ -package rpc - -import ( - "bytes" - "testing" -) - -//fromHex -func TestFromHex(t *testing.T) { - input := "0x01" - expected := []byte{1} - result := fromHex(input) - if bytes.Compare(expected, result) != 0 { - t.Errorf("Expected % x got % x", expected, result) - } -} - -func TestFromHexOddLength(t *testing.T) { - input := "0x1" - expected := []byte{1} - result := fromHex(input) - if bytes.Compare(expected, result) != 0 { - t.Errorf("Expected % x got % x", expected, result) - } -} -- cgit v1.2.3