summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/call/not-a-constructor.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Function/prototype/call/not-a-constructor.js')
-rw-r--r--js/src/tests/test262/built-ins/Function/prototype/call/not-a-constructor.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/src/tests/test262/built-ins/Function/prototype/call/not-a-constructor.js b/js/src/tests/test262/built-ins/Function/prototype/call/not-a-constructor.js
index 1ae179235e..7e90f7fee7 100644
--- a/js/src/tests/test262/built-ins/Function/prototype/call/not-a-constructor.js
+++ b/js/src/tests/test262/built-ins/Function/prototype/call/not-a-constructor.js
@@ -29,11 +29,11 @@ assert.sameValue(
assert.throws(TypeError, () => {
new Function.prototype.call();
-}, '`new Function.prototype.call()` throws TypeError');
+});
assert.throws(TypeError, () => {
new Function.prototype.call;
-}, '`new Function.prototype.call` throws TypeError');
+});
var call = Function.prototype.call;
assert.throws(TypeError, () => {