| Index: tests/corelib/regexp/look-ahead_test.dart
|
| diff --git a/tests/corelib/regexp/look-ahead_test.dart b/tests/corelib/regexp/look-ahead_test.dart
|
| index ffb67e4515d23267d63c31e92114a9712fdf1ab9..56bead702f929341afa92ee170c93d4daed5bd51 100644
|
| --- a/tests/corelib/regexp/look-ahead_test.dart
|
| +++ b/tests/corelib/regexp/look-ahead_test.dart
|
| @@ -27,8 +27,7 @@ import 'package:expect/expect.dart';
|
|
|
| void main() {
|
| description(
|
| - 'Test for regression against <a href="https://bugs.webkit.org/show_bug.cgi?id=41458">Yarr Interpreter is crashing in some cases of look-ahead regex patterns</a>'
|
| - );
|
| + 'Test for regression against <a href="https://bugs.webkit.org/show_bug.cgi?id=41458">Yarr Interpreter is crashing in some cases of look-ahead regex patterns</a>');
|
|
|
| shouldBe(firstMatch("ab", new RegExp(r"a(?=b|c)")), ["a"]);
|
| shouldBe(firstMatch("abd", new RegExp(r"a(?=c|b)|d")), ["a"]);
|
|
|