aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/analysis_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/vm/analysis_test.go')
-rw-r--r--core/vm/analysis_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vm/analysis_test.go b/core/vm/analysis_test.go
index 17c578e95..3d4e709db 100644
--- a/core/vm/analysis_test.go
+++ b/core/vm/analysis_test.go
@@ -28,7 +28,7 @@ func TestJumpDestAnalysis(t *testing.T) {
{[]byte{byte(PUSH32)}, 0xFF, 2},
}
for _, test := range tests {
- ret := jumpdests(test.code)
+ ret := codeBitmap(test.code)
if ret[test.which] != test.exp {
t.Fatalf("expected %x, got %02x", test.exp, ret[test.which])
}