Index: test/mjsunit/string-split.js |
diff --git a/test/mjsunit/string-split.js b/test/mjsunit/string-split.js |
index bc509451355579c1074982396a6b8320c2b7befc..d8412f0eed561cd710270efd6b2e62a2c9b7fc16 100644 |
--- a/test/mjsunit/string-split.js |
+++ b/test/mjsunit/string-split.js |
@@ -68,13 +68,13 @@ assertArrayEquals(["a", "b", "c"], "abc".split(/(?=.)/)); |
/* "ab".split(/((?=.))/) |
- * |
+ * |
* KJS: ,a,,b |
* SM: a,,b, |
* IE: a,b |
* Opera: a,,b |
* V8: a,,b |
- * |
+ * |
* Opera seems to have this right. The others make no sense. |
*/ |
assertArrayEquals(["a", "", "b"], "ab".split(/((?=.))/)); |