aboutsummaryrefslogtreecommitdiffstats
path: root/common/natspec
diff options
context:
space:
mode:
authorzelig <viktor.tron@gmail.com>2015-03-24 01:36:04 +0800
committerzelig <viktor.tron@gmail.com>2015-03-24 01:36:04 +0800
commit53af810851844c884fe95e1121c09e8778ce7749 (patch)
tree66ad03282bf6fd03b5f2d5ae297c8f18c5e19791 /common/natspec
parent90c710fd2687a0c9f3b3e4f5f3b9b69febc506e8 (diff)
downloadgo-tangerine-53af810851844c884fe95e1121c09e8778ce7749.tar
go-tangerine-53af810851844c884fe95e1121c09e8778ce7749.tar.gz
go-tangerine-53af810851844c884fe95e1121c09e8778ce7749.tar.bz2
go-tangerine-53af810851844c884fe95e1121c09e8778ce7749.tar.lz
go-tangerine-53af810851844c884fe95e1121c09e8778ce7749.tar.xz
go-tangerine-53af810851844c884fe95e1121c09e8778ce7749.tar.zst
go-tangerine-53af810851844c884fe95e1121c09e8778ce7749.zip
natspec: minor fix in test
Diffstat (limited to 'common/natspec')
-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)