Commit 75a24409 authored by arv's avatar arv Committed by Commit bot

Minor test fix to block binding

The test did not invoke the function

BUG=v8:3921
LOG=N
R=adamk

Review URL: https://codereview.chromium.org/961463002

Cr-Commit-Position: refs/heads/master@{#26869}
parent fb6f68b8
...@@ -101,7 +101,8 @@ function f4(one) { ...@@ -101,7 +101,8 @@ function f4(one) {
assertEquals(4, eval('z')); assertEquals(4, eval('z'));
assertEquals(5, eval('u')); assertEquals(5, eval('u'));
assertEquals(6, eval('v')); assertEquals(6, eval('v'));
}; }
f();
} }
} }
f4(1); f4(1);
...@@ -122,7 +123,8 @@ function f5(one) { ...@@ -122,7 +123,8 @@ function f5(one) {
assertEquals(4, z); assertEquals(4, z);
assertEquals(5, u); assertEquals(5, u);
assertEquals(6, v); assertEquals(6, v);
}; }
f();
} }
} }
f5(1); f5(1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment