summaryrefslogtreecommitdiff
path: root/test/built-ins/ArrayBuffer/prototype-from-newtarget.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/ArrayBuffer/prototype-from-newtarget.js')
-rw-r--r--test/built-ins/ArrayBuffer/prototype-from-newtarget.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/ArrayBuffer/prototype-from-newtarget.js b/test/built-ins/ArrayBuffer/prototype-from-newtarget.js
index 8044f622b..0d6c097d7 100644
--- a/test/built-ins/ArrayBuffer/prototype-from-newtarget.js
+++ b/test/built-ins/ArrayBuffer/prototype-from-newtarget.js
@@ -25,7 +25,7 @@ features: [Reflect.construct]
var arrayBuffer = Reflect.construct(ArrayBuffer, [8], Object);
assert.sameValue(Object.getPrototypeOf(arrayBuffer), Object.prototype, "NewTarget is built-in Object constructor");
-var newTarget = function(){}.bind(null);
+var newTarget = function() {}.bind(null);
Object.defineProperty(newTarget, "prototype", {
get: function() {
return Array.prototype;