aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch07/7.8/7.8.5/S7.8.5_A3.1_T7.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/ch07/7.8/7.8.5/S7.8.5_A3.1_T7.js')
-rw-r--r--test/suite/ch07/7.8/7.8.5/S7.8.5_A3.1_T7.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/suite/ch07/7.8/7.8.5/S7.8.5_A3.1_T7.js b/test/suite/ch07/7.8/7.8.5/S7.8.5_A3.1_T7.js
index b54dc6e76..7dee7d1ea 100644
--- a/test/suite/ch07/7.8/7.8.5/S7.8.5_A3.1_T7.js
+++ b/test/suite/ch07/7.8/7.8.5/S7.8.5_A3.1_T7.js
@@ -1,4 +1,4 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
+// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
@@ -9,7 +9,8 @@
*/
//CHECK#1
-var regexp = /(?:)/\u0067;
+var regexp;
+eval("regexp = /(?:)/\u0067");
if (regexp.global !== true) {
$ERROR('#1: var regexp = /(?:)/\\u0067; regexp.global === true. Actual: ' + (regexp.global));
}