diff --git a/test/language/block-scope/syntax/function-declarations/in-statement-position-do-statement-while-expression.js b/test/language/block-scope/syntax/function-declarations/in-statement-position-do-statement-while-expression.js index 1912694265..c9f35f2ed1 100644 --- a/test/language/block-scope/syntax/function-declarations/in-statement-position-do-statement-while-expression.js +++ b/test/language/block-scope/syntax/function-declarations/in-statement-position-do-statement-while-expression.js @@ -3,12 +3,11 @@ /*--- es6id: 13.1 description: > - function declarations in statement position in strict mode: + function declarations in statement position: do Statement while ( Expression ) negative: phase: parse type: SyntaxError -flags: [onlyStrict] ---*/ $DONOTEVALUATE(); diff --git a/test/language/block-scope/syntax/function-declarations/in-statement-position-for-statement.js b/test/language/block-scope/syntax/function-declarations/in-statement-position-for-statement.js index 52628c11d4..bd5d9fb7de 100644 --- a/test/language/block-scope/syntax/function-declarations/in-statement-position-for-statement.js +++ b/test/language/block-scope/syntax/function-declarations/in-statement-position-for-statement.js @@ -3,12 +3,11 @@ /*--- es6id: 13.1 description: > - function declarations in statement position in strict mode: + function declarations in statement position: for ( ;;) Statement negative: phase: parse type: SyntaxError -flags: [onlyStrict] ---*/ $DONOTEVALUATE(); diff --git a/test/language/block-scope/syntax/function-declarations/in-statement-position-while-expression-statement.js b/test/language/block-scope/syntax/function-declarations/in-statement-position-while-expression-statement.js index 85d0135301..740bf874ff 100644 --- a/test/language/block-scope/syntax/function-declarations/in-statement-position-while-expression-statement.js +++ b/test/language/block-scope/syntax/function-declarations/in-statement-position-while-expression-statement.js @@ -3,12 +3,11 @@ /*--- es6id: 13.1 description: > - function declarations in statement position in strict mode: + function declarations in statement position: while ( Expression ) Statement negative: phase: parse type: SyntaxError -flags: [onlyStrict] ---*/ $DONOTEVALUATE();