summaryrefslogtreecommitdiff
path: root/test/built-ins/global/S10.2.3_A1.1_T1.js
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2018-02-09 11:35:37 -0500
committerLeo Balter <leonardo.balter@gmail.com>2018-02-09 11:35:37 -0500
commita01de4a722d088055a7d84d8c691ddd7109edb34 (patch)
treef583c8efd40a3b699261f1166da75a9861d83e7b /test/built-ins/global/S10.2.3_A1.1_T1.js
parent7b01f9799f99851955f23c18c12e6651c1941022 (diff)
downloadqtdeclarative-testsuites-a01de4a722d088055a7d84d8c691ddd7109edb34.tar.gz
js-beautify: make all indentation consistent (depth & character) (#1409)
Diffstat (limited to 'test/built-ins/global/S10.2.3_A1.1_T1.js')
-rw-r--r--test/built-ins/global/S10.2.3_A1.1_T1.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/global/S10.2.3_A1.1_T1.js b/test/built-ins/global/S10.2.3_A1.1_T1.js
index 51359c334..44d2fc16c 100644
--- a/test/built-ins/global/S10.2.3_A1.1_T1.js
+++ b/test/built-ins/global/S10.2.3_A1.1_T1.js
@@ -10,16 +10,16 @@ description: Global execution context - Value Properties
---*/
//CHECK#1
-if ( NaN === null ) {
+if (NaN === null) {
$ERROR("#1: NaN === null");
}
//CHECK#2
-if ( Infinity === null ) {
+if (Infinity === null) {
$ERROR("#2: Infinity === null");
}
//CHECK#3
-if ( undefined === null ) {
+if (undefined === null) {
$ERROR("#3: undefined === null");
}