summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray/prototype/every/callbackfn-this.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArray/prototype/every/callbackfn-this.js')
-rw-r--r--test/built-ins/TypedArray/prototype/every/callbackfn-this.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/built-ins/TypedArray/prototype/every/callbackfn-this.js b/test/built-ins/TypedArray/prototype/every/callbackfn-this.js
index 2e944bb49..a3e62feb8 100644
--- a/test/built-ins/TypedArray/prototype/every/callbackfn-this.js
+++ b/test/built-ins/TypedArray/prototype/every/callbackfn-this.js
@@ -27,9 +27,7 @@ includes: [testTypedArray.js]
features: [TypedArray]
---*/
-var expected = (function() {
- return this;
-})();
+var expected = (function() { return this; })();
var thisArg = {};
testWithTypedArrayConstructors(function(TA) {