summaryrefslogtreecommitdiff
path: root/test/built-ins/Math/acosh/nan-returns.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Math/acosh/nan-returns.js')
-rw-r--r--test/built-ins/Math/acosh/nan-returns.js36
1 files changed, 18 insertions, 18 deletions
diff --git a/test/built-ins/Math/acosh/nan-returns.js b/test/built-ins/Math/acosh/nan-returns.js
index 4917b4905..b58e45dd5 100644
--- a/test/built-ins/Math/acosh/nan-returns.js
+++ b/test/built-ins/Math/acosh/nan-returns.js
@@ -1,18 +1,18 @@
-// Copyright 2015 Microsoft Corporation. All rights reserved.
-// This code is governed by the license found in the LICENSE file.
-
-/*---
-description: Math.acosh with special values
-es6id: 20.2.2.3
-info: |
- Math.acosh ( x )
-
- - If x is NaN, the result is NaN.
- - If x is less than 1, the result is NaN.
----*/
-
-assert.sameValue(Math.acosh(NaN), NaN, "NaN");
-assert.sameValue(Math.acosh(0.999999), NaN, "0.999999");
-assert.sameValue(Math.acosh(0), NaN, "0");
-assert.sameValue(Math.acosh(-1), NaN, "-1");
-assert.sameValue(Math.acosh(-Infinity), NaN, "-Infinity");
+// Copyright 2015 Microsoft Corporation. All rights reserved.
+// This code is governed by the license found in the LICENSE file.
+
+/*---
+description: Math.acosh with special values
+es6id: 20.2.2.3
+info: |
+ Math.acosh ( x )
+
+ - If x is NaN, the result is NaN.
+ - If x is less than 1, the result is NaN.
+---*/
+
+assert.sameValue(Math.acosh(NaN), NaN, "NaN");
+assert.sameValue(Math.acosh(0.999999), NaN, "0.999999");
+assert.sameValue(Math.acosh(0), NaN, "0");
+assert.sameValue(Math.acosh(-1), NaN, "-1");
+assert.sameValue(Math.acosh(-Infinity), NaN, "-Infinity");