From 91b867b66065a09d63b80c81fbfe281c41884b6e Mon Sep 17 00:00:00 2001 From: Alexey Shvayka Date: Sat, 28 Mar 2020 16:41:43 +0200 Subject: [PATCH] Fix non-callable [[ProxyTarget]] test --- test/built-ins/Proxy/create-target-is-not-callable.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/built-ins/Proxy/create-target-is-not-callable.js b/test/built-ins/Proxy/create-target-is-not-callable.js index b381ab5877..ad4e367e21 100644 --- a/test/built-ins/Proxy/create-target-is-not-callable.js +++ b/test/built-ins/Proxy/create-target-is-not-callable.js @@ -1,7 +1,7 @@ // Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- -es6id: 9.5.15 +esid: sec-proxycreate description: > A Proxy exotic object is only callable if the given target is callable. info: | @@ -22,5 +22,5 @@ features: [Proxy] var p = new Proxy({}, {}); assert.throws(TypeError, function() { - p.call(); + p(); });