aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch15/15.1/15.1.2/15.1.2.5/S15.1.2.5_A1_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/ch15/15.1/15.1.2/15.1.2.5/S15.1.2.5_A1_T1.js')
-rw-r--r--test/suite/ch15/15.1/15.1.2/15.1.2.5/S15.1.2.5_A1_T1.js13
1 files changed, 6 insertions, 7 deletions
diff --git a/test/suite/ch15/15.1/15.1.2/15.1.2.5/S15.1.2.5_A1_T1.js b/test/suite/ch15/15.1/15.1.2/15.1.2.5/S15.1.2.5_A1_T1.js
index 1e952b218..a6f0d7141 100644
--- a/test/suite/ch15/15.1/15.1.2/15.1.2.5/S15.1.2.5_A1_T1.js
+++ b/test/suite/ch15/15.1/15.1.2/15.1.2.5/S15.1.2.5_A1_T1.js
@@ -1,12 +1,12 @@
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
-/**
- * isFinite applies ToNumber to its argument, then return false if the result is NaN, +Infinity, -Infinity, and otherwise return true
- *
- * @path ch15/15.1/15.1.2/15.1.2.5/S15.1.2.5_A1_T1.js
- * @description Checking all primitive
- */
+/*---
+info: >
+ isFinite applies ToNumber to its argument, then return false if the
+ result is NaN, +Infinity, -Infinity, and otherwise return true
+description: Checking all primitive
+---*/
// CHECK#1
if (!(isFinite(NaN) === false)) {
@@ -67,4 +67,3 @@ if (isFinite(false) === false) {
if (isFinite("1") === false) {
$ERROR('#12: "1" !== Not-a-Finite');
}
-