summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-22.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/indexOf/15.4.4.14-5-22.js')
-rw-r--r--test/built-ins/Array/prototype/indexOf/15.4.4.14-5-22.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-22.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-22.js
index 21bb6b03a..e1ed13197 100644
--- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-22.js
+++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-22.js
@@ -9,11 +9,11 @@ description: >
has an own valueOf method
---*/
- var fromIndex = {
- valueOf: function () {
- return 1;
- }
- };
+var fromIndex = {
+ valueOf: function() {
+ return 1;
+ }
+};
assert.sameValue([0, true].indexOf(true, fromIndex), 1, '[0, true].indexOf(true, fromIndex)');