Index: test/mjsunit/regexp-static.js |
diff --git a/test/mjsunit/regexp-static.js b/test/mjsunit/regexp-static.js |
index 8f283f6ceebe3ae1f5cb2fe681afb6b1c312acf5..62e4e7e3bd76a40a63b0434b61b4a397b53d2bf4 100644 |
--- a/test/mjsunit/regexp-static.js |
+++ b/test/mjsunit/regexp-static.js |
@@ -119,7 +119,7 @@ for (var i = 4; i < 10; ++i) { |
// case the function uses the static properties of the regexp constructor. |
re = /(.)/g; |
function f() { return RegExp.$1; }; |
-assertEquals('abcd', 'abcd'.replace(re, f)); |
+assertEquals('dddd', 'abcd'.replace(re, f)); |
// lastParen where the last parenthesis didn't match. |
assertEquals(["foo",undefined], /foo(?:a(x))?/.exec("foobx"), |