aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch09/9.3/9.3.1/S9.3.1_A15.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/ch09/9.3/9.3.1/S9.3.1_A15.js')
-rw-r--r--test/suite/ch09/9.3/9.3.1/S9.3.1_A15.js13
1 files changed, 6 insertions, 7 deletions
diff --git a/test/suite/ch09/9.3/9.3.1/S9.3.1_A15.js b/test/suite/ch09/9.3/9.3.1/S9.3.1_A15.js
index d0ba80b6e..2d69b10ce 100644
--- a/test/suite/ch09/9.3/9.3.1/S9.3.1_A15.js
+++ b/test/suite/ch09/9.3/9.3.1/S9.3.1_A15.js
@@ -1,15 +1,14 @@
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
-/**
- * The MV of SignedInteger ::: - DecimalDigits is the negative of the MV of DecimalDigits
- *
- * @path ch09/9.3/9.3.1/S9.3.1_A15.js
- * @description Compare -Number('1234567890') with ('-1234567890')
- */
+/*---
+info: >
+ The MV of SignedInteger ::: - DecimalDigits is the negative of the MV of
+ DecimalDigits
+description: Compare -Number('1234567890') with ('-1234567890')
+---*/
// CHECK#1
if (+("-1234567890") !== -Number("1234567890")) {
$ERROR('#1: +("-1234567890") === -Number("1234567890")');
}
-