aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-24 04:48:50 +0800
committerobscuren <geffobscura@gmail.com>2015-03-24 04:48:50 +0800
commit0eaa023ffa48af300dde8361a2dcbeaa754bc2c1 (patch)
tree23e5396c5d0ad752c6ef5420e41342adb183539d
parentbfb9ed881d3b7de3a4a68686a1f90d84decc8667 (diff)
parente88a29ad028cf5e147fdfc7fc008f58a9abce260 (diff)
downloadgo-tangerine-0eaa023ffa48af300dde8361a2dcbeaa754bc2c1.tar.gz
go-tangerine-0eaa023ffa48af300dde8361a2dcbeaa754bc2c1.tar.zst
go-tangerine-0eaa023ffa48af300dde8361a2dcbeaa754bc2c1.zip
Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop
-rw-r--r--common/natspec/natspec_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/natspec/natspec_test.go b/common/natspec/natspec_test.go
index 330dc831d..3b548817b 100644
--- a/common/natspec/natspec_test.go
+++ b/common/natspec/natspec_test.go
@@ -72,7 +72,7 @@ func TestNotice(t *testing.T) {
badDesc := "Will multiply `e` by 7 and return `a * 7`."
notice, err = ns.Notice(tx, abi, method, badDesc)
- expected = "natspec.js error evaluating expression: Error: Natspec evaluation failed, wrong input params"
+ expected = "natspec.js error evaluating expression: Natspec evaluation failed, wrong input params"
if err == nil {
t.Errorf("expected error, got nothing (notice: '%v')", notice)
@@ -84,7 +84,7 @@ func TestNotice(t *testing.T) {
notice, err = ns.Notice(tx, abi, "missing_method", desc)
- expected = "natspec.js error evaluating expression: Error: Natspec evaluation failed, method does not exist"
+ expected = "natspec.js error evaluating expression: Natspec evaluation failed, method does not exist"
if err == nil {
t.Errorf("expected error, got nothing (notice: '%v')", notice)