aboutsummaryrefslogtreecommitdiffstats
path: root/tests/vm_test_util.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-06-19 04:27:44 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-06-19 04:27:44 +0800
commitbaea8e87e5dfdcfb7b2fdcef48fa6038d60a6f9c (patch)
treefd9084c77e97df8ec4b46ca616023e812d8e246d /tests/vm_test_util.go
parent01ec4dbb1251751b8bbf62ddb3b3a02dc50d29fc (diff)
downloadgo-tangerine-baea8e87e5dfdcfb7b2fdcef48fa6038d60a6f9c.tar
go-tangerine-baea8e87e5dfdcfb7b2fdcef48fa6038d60a6f9c.tar.gz
go-tangerine-baea8e87e5dfdcfb7b2fdcef48fa6038d60a6f9c.tar.bz2
go-tangerine-baea8e87e5dfdcfb7b2fdcef48fa6038d60a6f9c.tar.lz
go-tangerine-baea8e87e5dfdcfb7b2fdcef48fa6038d60a6f9c.tar.xz
go-tangerine-baea8e87e5dfdcfb7b2fdcef48fa6038d60a6f9c.tar.zst
go-tangerine-baea8e87e5dfdcfb7b2fdcef48fa6038d60a6f9c.zip
Rebase cleanup
Diffstat (limited to 'tests/vm_test_util.go')
-rw-r--r--tests/vm_test_util.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vm_test_util.go b/tests/vm_test_util.go
index f7f1198ec..9fccafd8e 100644
--- a/tests/vm_test_util.go
+++ b/tests/vm_test_util.go
@@ -130,7 +130,7 @@ func runVmTest(test VmTest) error {
vexp := common.HexToHash(value)
if v != vexp {
- return fmt.Errorf("(%x: %s) storage failed. Expected %x, got %x (%v %v)\n", obj.Address().Bytes()[0:4], addr, vexp, v, vexp.BigD(vexp), v.Big(v))
+ return fmt.Errorf("(%x: %s) storage failed. Expected %x, got %x (%v %v)\n", obj.Address().Bytes()[0:4], addr, vexp, v, vexp.Big(), v.Big())
}
}
}