| Index: tests/corelib/reg_exp_all_matches_test.dart
|
| diff --git a/tests/corelib/reg_exp_all_matches_test.dart b/tests/corelib/reg_exp_all_matches_test.dart
|
| index 9ea1bbf9186a51972f923b98bf4f26e6c99f2549..fb4616c2f06c3a8833d0c5bd1eb57469ee647214 100644
|
| --- a/tests/corelib/reg_exp_all_matches_test.dart
|
| +++ b/tests/corelib/reg_exp_all_matches_test.dart
|
| @@ -87,9 +87,9 @@ class RegExpAllMatchesTest {
|
|
|
| static testIsEmpty() {
|
| var matches = new RegExp("foo?").allMatches("foo fo foo fo");
|
| - Expect.equals(false, matches.isEmpty());
|
| + Expect.equals(false, matches.isEmpty);
|
| matches = new RegExp("fooo").allMatches("foo fo foo fo");
|
| - Expect.equals(true, matches.isEmpty());
|
| + Expect.equals(true, matches.isEmpty);
|
| }
|
|
|
| static testGetCount() {
|
|
|