Merge V8 at branches/3.2 r8200: Initial merge by Git
Change-Id: I5c434306e98132997e9c5f6024b6ce200b255edf
diff --git a/test/mjsunit/regexp-compile.js b/test/mjsunit/regexp-compile.js
index 6a24325..6f8e751 100644
--- a/test/mjsunit/regexp-compile.js
+++ b/test/mjsunit/regexp-compile.js
@@ -27,16 +27,16 @@
// Test that we don't cache the result of a regexp match across a
// compile event.
-var re = /x/;
+var re = /x/;
assertEquals("a.yb", "axyb".replace(re, "."));
-re.compile("y");
+re.compile("y")
assertEquals("ax.b", "axyb".replace(re, "."));
re.compile("(x)");
-assertEquals(["x", "x"], re.exec("axyb"));
+assertEquals("x,x", re.exec("axyb"));
re.compile("(y)");
-assertEquals(["y", "y"], re.exec("axyb"));
+assertEquals("y,y", re.exec("axyb"));