Index: tests/corelib/reg_exp_start_end_test.dart |
diff --git a/tests/corelib/reg_exp_start_end_test.dart b/tests/corelib/reg_exp_start_end_test.dart |
index 06463e4803e2d93c5cf31fa401374c2c986fb903..80b4634a44d0dc83028ca2ca590a509e29b56d31 100644 |
--- a/tests/corelib/reg_exp_start_end_test.dart |
+++ b/tests/corelib/reg_exp_start_end_test.dart |
@@ -10,8 +10,8 @@ main() { |
int end = 5; |
while (it.hasNext) { |
Match match = it.next(); |
- Expect.equals(start, match.start()); |
- Expect.equals(end, match.end()); |
+ Expect.equals(start, match.start); |
+ Expect.equals(end, match.end); |
start += 6; |
end += 6; |
} |