Index: tests/corelib/regexp/dotstar_test.dart |
diff --git a/tests/corelib/regexp/dotstar_test.dart b/tests/corelib/regexp/dotstar_test.dart |
index 16f63f0d9a32b445850f8d0265aa7b33237a710b..33e8107997a3f020f79432daa4ea87bee6ff579c 100644 |
--- a/tests/corelib/regexp/dotstar_test.dart |
+++ b/tests/corelib/regexp/dotstar_test.dart |
@@ -107,10 +107,11 @@ void main() { |
var regexp8 = new RegExp(r"^(.*)blah.*$"); |
shouldBeNull(regexp8.firstMatch('test')); |
- shouldBe(regexp8.firstMatch('blah'), ['blah','']); |
- shouldBe(regexp8.firstMatch('1blah'), ['1blah','1']); |
- shouldBe(regexp8.firstMatch('blah1'), ['blah1','']); |
- shouldBe(regexp8.firstMatch('blah blah blah'), ['blah blah blah','blah blah ']); |
+ shouldBe(regexp8.firstMatch('blah'), ['blah', '']); |
+ shouldBe(regexp8.firstMatch('1blah'), ['1blah', '1']); |
+ shouldBe(regexp8.firstMatch('blah1'), ['blah1', '']); |
+ shouldBe( |
+ regexp8.firstMatch('blah blah blah'), ['blah blah blah', 'blah blah ']); |
shouldBeNull(regexp8.firstMatch('blah\nsecond')); |
shouldBeNull(regexp8.firstMatch('first\nblah')); |
shouldBeNull(regexp8.firstMatch('first\nblah\nthird')); |