aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/util_test.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-03-14 18:46:32 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-03-14 18:46:32 +0800
commit51df765e3892285bda6d40340dc6febfcd2e7ce6 (patch)
treeeb55d41ec2f62babef19af22e7fadf5280935d47 /rpc/util_test.go
parentb927c29469864424a97c06ff2f31e2d882b01cd7 (diff)
parent9754e7aca79a3d24ac17589f548072a4dca68fbb (diff)
downloadgo-tangerine-51df765e3892285bda6d40340dc6febfcd2e7ce6.tar
go-tangerine-51df765e3892285bda6d40340dc6febfcd2e7ce6.tar.gz
go-tangerine-51df765e3892285bda6d40340dc6febfcd2e7ce6.tar.bz2
go-tangerine-51df765e3892285bda6d40340dc6febfcd2e7ce6.tar.lz
go-tangerine-51df765e3892285bda6d40340dc6febfcd2e7ce6.tar.xz
go-tangerine-51df765e3892285bda6d40340dc6febfcd2e7ce6.tar.zst
go-tangerine-51df765e3892285bda6d40340dc6febfcd2e7ce6.zip
Merge pull request #481 from maran/feature/fromHexDry
DRY-up the use of fromHex in the project
Diffstat (limited to 'rpc/util_test.go')
-rw-r--r--rpc/util_test.go25
1 files changed, 0 insertions, 25 deletions
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)
- }
-}