aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/parsing_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethutil/parsing_test.go')
-rw-r--r--ethutil/parsing_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethutil/parsing_test.go b/ethutil/parsing_test.go
index 482eef3ee..69a5e9016 100644
--- a/ethutil/parsing_test.go
+++ b/ethutil/parsing_test.go
@@ -13,7 +13,7 @@ func TestCompile(t *testing.T) {
}
calc := (48 + 0*256 + 0*int64(math.Pow(256, 2)))
- if Big(instr).Int64() != calc {
+ if BigD(instr).Int64() != calc {
t.Error("Expected", calc, ", got:", instr)
}
}