aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/11_Expressions/11.12_Conditional_Operator/S11.12_A3_T4.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/11_Expressions/11.12_Conditional_Operator/S11.12_A3_T4.js')
-rw-r--r--test/suite/sputnik_converted/11_Expressions/11.12_Conditional_Operator/S11.12_A3_T4.js36
1 files changed, 0 insertions, 36 deletions
diff --git a/test/suite/sputnik_converted/11_Expressions/11.12_Conditional_Operator/S11.12_A3_T4.js b/test/suite/sputnik_converted/11_Expressions/11.12_Conditional_Operator/S11.12_A3_T4.js
deleted file mode 100644
index 9bff7581b..000000000
--- a/test/suite/sputnik_converted/11_Expressions/11.12_Conditional_Operator/S11.12_A3_T4.js
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
-* @name: S11.12_A3_T4;
-* @section: 11.12;
-* @assertion: If ToBoolean(x) is false, return z;
-* @description: Type(x) or Type(y) is changed between null and undefined;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S11.12_A3_T4",
-
-path: "TestCases/11_Expressions/11.12_Conditional_Operator/S11.12_A3_T4.js",
-
-assertion: "If ToBoolean(x) is false, return z",
-
-description: "Type(x) or Type(y) is changed between null and undefined",
-
-test: function testcase() {
- //CHECK#1
-if ((false ? true : undefined) !== undefined) {
- $ERROR('#1: (false ? true : undefined) === undefined');
-}
-
-//CHECK#2
-if ((false ? true : null) !== null) {
- $ERROR('#2: (false ? true : null) === null');
-}
-
- }
-});
-