summaryrefslogtreecommitdiff
path: root/test/built-ins/global/S10.2.3_A1.2_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/global/S10.2.3_A1.2_T1.js')
-rw-r--r--test/built-ins/global/S10.2.3_A1.2_T1.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/global/S10.2.3_A1.2_T1.js b/test/built-ins/global/S10.2.3_A1.2_T1.js
index 5652ac2d0..6eac1483d 100644
--- a/test/built-ins/global/S10.2.3_A1.2_T1.js
+++ b/test/built-ins/global/S10.2.3_A1.2_T1.js
@@ -11,17 +11,17 @@ description: Function execution context - Value Properties
function test() {
//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");
}
}