summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/prototype/toString/symbol-tag-override-instances.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/prototype/toString/symbol-tag-override-instances.js')
-rw-r--r--test/built-ins/Object/prototype/toString/symbol-tag-override-instances.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/built-ins/Object/prototype/toString/symbol-tag-override-instances.js b/test/built-ins/Object/prototype/toString/symbol-tag-override-instances.js
index 48d20a419..26f9f4bbf 100644
--- a/test/built-ins/Object/prototype/toString/symbol-tag-override-instances.js
+++ b/test/built-ins/Object/prototype/toString/symbol-tag-override-instances.js
@@ -24,7 +24,9 @@ custom = new String();
custom[Symbol.toStringTag] = 'test262';
assert.sameValue(Object.prototype.toString.call(custom), '[object test262]');
-custom = (function() { return arguments; }());
+custom = (function() {
+ return arguments;
+}());
custom[Symbol.toStringTag] = 'test262';
assert.sameValue(Object.prototype.toString.call(custom), '[object test262]');