summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-13.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/indexOf/15.4.4.14-5-13.js')
-rw-r--r--test/built-ins/Array/prototype/indexOf/15.4.4.14-5-13.js7
1 files changed, 1 insertions, 6 deletions
diff --git a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-13.js b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-13.js
index cd36077d2..08f805073 100644
--- a/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-13.js
+++ b/test/built-ins/Array/prototype/indexOf/15.4.4.14-5-13.js
@@ -6,11 +6,6 @@ es5id: 15.4.4.14-5-13
description: >
Array.prototype.indexOf - value of 'fromIndex' is a number (value
is -Infinity)
-includes: [runTestCase.js]
---*/
-function testcase() {
-
- return [true].indexOf(true, -Infinity) === 0;
- }
-runTestCase(testcase);
+assert.sameValue([true].indexOf(true, -Infinity), 0, '[true].indexOf(true, -Infinity)');