aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/07_Lexical_Conventions/7.2_White_Space/S7.2_A1.4_T2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/07_Lexical_Conventions/7.2_White_Space/S7.2_A1.4_T2.js')
-rw-r--r--test/suite/sputnik_converted/07_Lexical_Conventions/7.2_White_Space/S7.2_A1.4_T2.js39
1 files changed, 0 insertions, 39 deletions
diff --git a/test/suite/sputnik_converted/07_Lexical_Conventions/7.2_White_Space/S7.2_A1.4_T2.js b/test/suite/sputnik_converted/07_Lexical_Conventions/7.2_White_Space/S7.2_A1.4_T2.js
deleted file mode 100644
index 2e6eedd01..000000000
--- a/test/suite/sputnik_converted/07_Lexical_Conventions/7.2_White_Space/S7.2_A1.4_T2.js
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @name: S7.2_A1.4_T2;
- * @section: 7.2, 7.5;
- * @assertion: SPACE (U+0020) between any two tokens is allowed;
- * @description: Insert real SPACE between tokens of var x=1;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S7.2_A1.4_T2",
-
-path: "TestCases/07_Lexical_Conventions/7.2_White_Space/S7.2_A1.4_T2.js",
-
-assertion: "SPACE (U+0020) between any two tokens is allowed",
-
-description: "Insert real SPACE between tokens of var x=1",
-
-test: function testcase() {
- //CHECK#1
-eval("\u0020var x\u0020= 1\u0020");
-if (x !== 1) {
- $ERROR('#1: eval("\\u0020var x\\u0020= 1\\u0020"); x === 1. Actual: ' + (x));
-}
-
-//CHECK#2
- var x = 1 ;
-if (x !== 1) {
- $ERROR('#2: var x = 1 ; x === 1. Actual: ' + (x));
-}
-
-
- }
-});
-