diff --git a/test/built-ins/Array/S15.4.3_A2.3.js b/test/built-ins/Array/S15.4.3_A2.3.js index 1dd6a2f85f..fbd42918c0 100644 --- a/test/built-ins/Array/S15.4.3_A2.3.js +++ b/test/built-ins/Array/S15.4.3_A2.3.js @@ -5,6 +5,7 @@ info: The length property of Array has the attribute ReadOnly es5id: 15.4.3_A2.3 description: Checking if varying the length property fails +flags: [noStrict] ---*/ //CHECK#1 diff --git a/test/built-ins/GeneratorPrototype/throw/from-state-completed.js b/test/built-ins/GeneratorPrototype/throw/from-state-completed.js index ce07d134c3..2054954b4f 100644 --- a/test/built-ins/GeneratorPrototype/throw/from-state-completed.js +++ b/test/built-ins/GeneratorPrototype/throw/from-state-completed.js @@ -16,7 +16,7 @@ iter.next(); assert.throws(E, function() { iter.throw(new E()); }); -result = iter.next(); +var result = iter.next(); assert.sameValue(result.value, undefined, 'Result `value`'); assert.sameValue(result.done, true, 'Result `done` flag'); diff --git a/test/built-ins/GeneratorPrototype/throw/from-state-suspended-start.js b/test/built-ins/GeneratorPrototype/throw/from-state-suspended-start.js index b3234c863c..0f42aad8f9 100644 --- a/test/built-ins/GeneratorPrototype/throw/from-state-suspended-start.js +++ b/test/built-ins/GeneratorPrototype/throw/from-state-suspended-start.js @@ -18,7 +18,7 @@ var iter; iter = G(); assert.throws(E, function() { iter.throw(new E()); }); -result = iter.next(); +var result = iter.next(); assert.sameValue(result.value, undefined, 'Result `value`'); assert.sameValue(result.done, true, 'Result `done` flag');