From ae0cf675bffb3a3f08088d80543053536d62dec8 Mon Sep 17 00:00:00 2001 From: Leo Balter Date: Wed, 21 Jul 2021 12:39:43 -0700 Subject: [PATCH] Update test/built-ins/eval/no-construct.js --- test/built-ins/eval/no-construct.js | 1 - 1 file changed, 1 deletion(-) diff --git a/test/built-ins/eval/no-construct.js b/test/built-ins/eval/no-construct.js index f1cac874ac..b728a02d31 100644 --- a/test/built-ins/eval/no-construct.js +++ b/test/built-ins/eval/no-construct.js @@ -13,7 +13,6 @@ description: > try { new eval(); - throw new Test262Error('#1.1: new eval() throw TypeError. Actual: ' + (new eval())); } catch (e) { if ((e instanceof TypeError) !== true) { throw new Test262Error('#1.2: new eval() throw TypeError. Actual: ' + (e));