From 00872ab9177a0cbfe4248b3c9a27af0f59653ad8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bargull?= Date: Wed, 30 Apr 2025 14:16:23 +0200 Subject: [PATCH] Enable strict mode testing for sm/Boolean --- test/staging/sm/Boolean/no-boolean-toJSON.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/staging/sm/Boolean/no-boolean-toJSON.js b/test/staging/sm/Boolean/no-boolean-toJSON.js index e1bbca6dea..eb77ba3c52 100644 --- a/test/staging/sm/Boolean/no-boolean-toJSON.js +++ b/test/staging/sm/Boolean/no-boolean-toJSON.js @@ -2,12 +2,11 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- -flags: - - noStrict description: | pending esid: pending ---*/ + /* * Any copyright is dedicated to the Public Domain. * http://creativecommons.org/licenses/publicdomain/ @@ -22,4 +21,3 @@ assert.sameValue(Boolean.prototype.hasOwnProperty('toJSON'), false); Object.prototype.toJSON = function() { return 2; }; assert.sameValue(JSON.stringify(new Boolean(true)), "2"); -