aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDavid Fugate <dfugate@microsoft.com>2012-03-27 13:01:22 -0700
committerDavid Fugate <dfugate@microsoft.com>2012-03-27 13:01:22 -0700
commit2a112abbd5eac9cea3672cf16d97ba3ca65fb846 (patch)
tree58a5a5f4b31bb08d11589ffd367dcdfa0435817b /test
parent44234c895490beeee6a22a4bd4991445d83f7412 (diff)
Renamed a couple of files.
Diffstat (limited to 'test')
-rw-r--r--test/suite/ch13/13.0/13.0_4-17gs.js (renamed from test/suite/ch13/13.0/13_4-17gs.js)6
-rw-r--r--test/suite/ch13/13.0/13.0_4-5gs.js (renamed from test/suite/ch13/13.0/13_4-5gs.js)2
2 files changed, 4 insertions, 4 deletions
diff --git a/test/suite/ch13/13.0/13_4-17gs.js b/test/suite/ch13/13.0/13.0_4-17gs.js
index 262b38fb2..c5eb74302 100644
--- a/test/suite/ch13/13.0/13_4-17gs.js
+++ b/test/suite/ch13/13.0/13.0_4-17gs.js
@@ -5,12 +5,12 @@
/// copyright and this notice and otherwise comply with the Use Terms.
/**
- * @path ch13/13.0/13_4-17gs.js
- * @description Strict Mode - SourceElements is evaluated as strict mode code when a Function constructor is contained in strict mode code
+ * @path ch13/13.0/13.0_4-17gs.js
+ * @description Strict Mode - SourceElements is not evaluated as strict mode code when a Function constructor is contained in strict mode code
* @onlyStrict
* @negative NotEarlyError
*/
"use strict";
-var _13_4_17_fun = new Function('eval = 42;');
+var _13_0_4_17_fun = new Function('eval = 42;');
throw NotEarlyError;
diff --git a/test/suite/ch13/13.0/13_4-5gs.js b/test/suite/ch13/13.0/13.0_4-5gs.js
index c662f4adc..4f9c01325 100644
--- a/test/suite/ch13/13.0/13_4-5gs.js
+++ b/test/suite/ch13/13.0/13.0_4-5gs.js
@@ -5,7 +5,7 @@
/// copyright and this notice and otherwise comply with the Use Terms.
/**
- * @path ch13/13.0/13_4-5gs.js
+ * @path ch13/13.0/13.0_4-5gs.js
* @description Strict Mode - SourceElements is evaluated as strict mode code when a FunctionDeclaration is contained in strict mode code
* @onlyStrict
* @negative ^((?!NotEarlyError).)*$