aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDavid Fugate <dfugate@microsoft.com>2012-02-27 16:45:56 -0800
committerDavid Fugate <dfugate@microsoft.com>2012-02-27 16:45:56 -0800
commite45ca2e0f3f528d2dcbfd642683c6fb6c3aee4c9 (patch)
tree8c2f81d7554d4e008e022adb87fd2a69f28225ee /test
parentc984466e4f70336eaedfd5adaea4824756e3a3a7 (diff)
https://bugs.ecmascript.org/show_bug.cgi?id=266 and https://bugs.ecmascript.org/show_bug.cgi?id=270 resolved.
Diffstat (limited to 'test')
-rw-r--r--test/suite/bestPractice/Sbp_7.8.4_A6.1_T4.js (renamed from test/suite/ch07/7.8/7.8.4/S7.8.4_A6.1_T4.js)2
-rw-r--r--test/suite/bestPractice/Sbp_7.8.4_A6.2_T1.js (renamed from test/suite/ch07/7.8/7.8.4/S7.8.4_A6.2_T1.js)2
-rw-r--r--test/suite/bestPractice/Sbp_7.8.4_A6.2_T2.js (renamed from test/suite/ch07/7.8/7.8.4/S7.8.4_A6.2_T2.js)2
-rw-r--r--test/suite/ch15/15.4/15.4.4/15.4.4.4/15.4.4.4-5-c-i-1.js4
4 files changed, 5 insertions, 5 deletions
diff --git a/test/suite/ch07/7.8/7.8.4/S7.8.4_A6.1_T4.js b/test/suite/bestPractice/Sbp_7.8.4_A6.1_T4.js
index dfb4a810c..d426efc57 100644
--- a/test/suite/ch07/7.8/7.8.4/S7.8.4_A6.1_T4.js
+++ b/test/suite/bestPractice/Sbp_7.8.4_A6.1_T4.js
@@ -4,7 +4,7 @@
/**
* EscapeSequence :: HexEscapeSequence :: x HexDigit HexDigit
*
- * @path ch07/7.8/7.8.4/S7.8.4_A6.1_T4.js
+ * @path bestPractice/Sbp_7.8.4_A6.1_T4.js
* @description HexEscapeSequence :: x0G is incorrect
* @negative
*/
diff --git a/test/suite/ch07/7.8/7.8.4/S7.8.4_A6.2_T1.js b/test/suite/bestPractice/Sbp_7.8.4_A6.2_T1.js
index f5114db65..5a3612621 100644
--- a/test/suite/ch07/7.8/7.8.4/S7.8.4_A6.2_T1.js
+++ b/test/suite/bestPractice/Sbp_7.8.4_A6.2_T1.js
@@ -4,7 +4,7 @@
/**
* HexEscapeSequence :: x HexDigit is incorrect
*
- * @path ch07/7.8/7.8.4/S7.8.4_A6.2_T1.js
+ * @path bestPractice/Sbp_7.8.4_A6.2_T1.js
* @description HexDigit :: 1
* @negative
*/
diff --git a/test/suite/ch07/7.8/7.8.4/S7.8.4_A6.2_T2.js b/test/suite/bestPractice/Sbp_7.8.4_A6.2_T2.js
index b68220f2c..0513fac65 100644
--- a/test/suite/ch07/7.8/7.8.4/S7.8.4_A6.2_T2.js
+++ b/test/suite/bestPractice/Sbp_7.8.4_A6.2_T2.js
@@ -4,7 +4,7 @@
/**
* HexEscapeSequence :: x HexDigit is incorrect
*
- * @path ch07/7.8/7.8.4/S7.8.4_A6.2_T2.js
+ * @path bestPractice/Sbp_7.8.4_A6.2_T2.js
* @description HexDigit :: A
* @negative
*/
diff --git a/test/suite/ch15/15.4/15.4.4/15.4.4.4/15.4.4.4-5-c-i-1.js b/test/suite/ch15/15.4/15.4.4/15.4.4.4/15.4.4.4-5-c-i-1.js
index 462f1baaf..a3e81fafe 100644
--- a/test/suite/ch15/15.4/15.4.4/15.4.4.4/15.4.4.4-5-c-i-1.js
+++ b/test/suite/ch15/15.4/15.4.4/15.4.4.4/15.4.4.4-5-c-i-1.js
@@ -36,10 +36,10 @@ function testcase() {
var hasProperty = newArr.hasOwnProperty("0");
- var instanceOfVerify = typeof newArr[0]==="number";
+ var instanceOfVerify = typeof newArr[0]==="object";
var verifyValue = false;
- verifyValue = newArr[0] === 101;
+ verifyValue = newArr[0] == 101;
var verifyEnumerable = false;
for (var p in newArr) {