diff --git a/test/built-ins/Array/prototype/flatMap/thisArg-argument.js b/test/built-ins/Array/prototype/flatMap/thisArg-argument.js
index a2217e6fb8dd8f5c144341e80c0026a7e53eb52f..f53821614e18667f2ea06d3f137be19f37e35d95 100644
--- a/test/built-ins/Array/prototype/flatMap/thisArg-argument.js
+++ b/test/built-ins/Array/prototype/flatMap/thisArg-argument.js
@@ -6,10 +6,9 @@ description: >
     Behavior when thisArg is provided
     Array.prototype.flatMap ( mapperFunction [ , thisArg ] )
 includes: [compareArray.js]
+flags: [onlyStrict]
 ---*/
 
-"use strict";
-
 var a = {};
 
 assert(compareArray([1].flatMap(function() { return [this]; }, "TestString"), ["TestString"]));