summaryrefslogtreecommitdiff
path: root/test/built-ins/RegExp/prototype/exec/15.10.6.2-9-e-1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/RegExp/prototype/exec/15.10.6.2-9-e-1.js')
-rw-r--r--test/built-ins/RegExp/prototype/exec/15.10.6.2-9-e-1.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/built-ins/RegExp/prototype/exec/15.10.6.2-9-e-1.js b/test/built-ins/RegExp/prototype/exec/15.10.6.2-9-e-1.js
index 4ccfba20f..ab93d95a8 100644
--- a/test/built-ins/RegExp/prototype/exec/15.10.6.2-9-e-1.js
+++ b/test/built-ins/RegExp/prototype/exec/15.10.6.2-9-e-1.js
@@ -8,9 +8,9 @@ description: >
current algorithm
---*/
-var str = "Hello World!";
-var regObj = new RegExp("World");
-var result = false;
-result = regObj.exec(str).toString() === "World";
+ var str = "Hello World!";
+ var regObj = new RegExp("World");
+ var result = false;
+ result = regObj.exec(str).toString() === "World";
assert(result, 'result !== true');