| Index: test/mjsunit/es6/block-scoping.js
|
| diff --git a/test/mjsunit/es6/block-scoping.js b/test/mjsunit/es6/block-scoping.js
|
| index 212352ee46d03c055cd2864612ac2363fc7ab9de..0308edde96a37dd0ca0675196fb7d4501a550d2f 100644
|
| --- a/test/mjsunit/es6/block-scoping.js
|
| +++ b/test/mjsunit/es6/block-scoping.js
|
| @@ -42,7 +42,7 @@
|
| for (var j = 0; j < 5; ++j) f1();
|
| %OptimizeFunctionOnNextCall(f1);
|
| f1();
|
| -assertOptimized(f1);
|
| +assertTrue(%GetOptimizationStatus(f1) != 2);
|
|
|
| // Dynamic lookup in and through block contexts.
|
| function f2(one) {
|
|
|