| Index: test/mjsunit/regexp-lookahead.js
|
| diff --git a/test/mjsunit/regexp-lookahead.js b/test/mjsunit/regexp-lookahead.js
|
| index 1188b56078e1964217dd16dfb4cd39be86307d1b..86e1b75ca3c605c8699eb03a3c0d9485ca57ced7 100644
|
| --- a/test/mjsunit/regexp-lookahead.js
|
| +++ b/test/mjsunit/regexp-lookahead.js
|
| @@ -140,7 +140,7 @@ execRE(re, "xy", ["", undefined, undefined]);
|
|
|
| re = /^(?=(x)(?!(y)))/;
|
| testRE(re, "xz", true);
|
| -testRE(re, "xy", false)
|
| +testRE(re, "xy", false);
|
| execRE(re, "xz", ["", "x", undefined]);
|
|
|
| re = /^(?!(x)(?=(y)))/;
|
|
|