aboutsummaryrefslogtreecommitdiffstats
path: root/common/types_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'common/types_test.go')
-rw-r--r--common/types_test.go10
1 files changed, 4 insertions, 6 deletions
diff --git a/common/types_test.go b/common/types_test.go
index 9f9d8b767..154c33063 100644
--- a/common/types_test.go
+++ b/common/types_test.go
@@ -21,8 +21,6 @@ import (
"math/big"
"strings"
"testing"
-
- "github.com/ethereum/go-ethereum/common/hexutil"
)
func TestBytesConversion(t *testing.T) {
@@ -43,10 +41,10 @@ func TestHashJsonValidation(t *testing.T) {
Size int
Error string
}{
- {"", 62, hexutil.ErrMissingPrefix.Error()},
- {"0x", 66, "hex string has length 66, want 64 for Hash"},
- {"0x", 63, hexutil.ErrOddLength.Error()},
- {"0x", 0, "hex string has length 0, want 64 for Hash"},
+ {"", 62, "json: cannot unmarshal hex string without 0x prefix into Go value of type common.Hash"},
+ {"0x", 66, "hex string has length 66, want 64 for common.Hash"},
+ {"0x", 63, "json: cannot unmarshal hex string of odd length into Go value of type common.Hash"},
+ {"0x", 0, "hex string has length 0, want 64 for common.Hash"},
{"0x", 64, ""},
{"0X", 64, ""},
}