Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(381)

Unified Diff: tests/corelib/reg_exp5_test.dart

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/corelib/reg_exp1_test.dart ('k') | tests/corelib/reg_exp_all_matches_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/reg_exp5_test.dart
diff --git a/tests/corelib/reg_exp5_test.dart b/tests/corelib/reg_exp5_test.dart
index 56002cac03e87ef7a98dcea9c07e4e86c476c8dc..3a1aa7f9e01f91a790dc53b5150f03f07d0d52cb 100644
--- a/tests/corelib/reg_exp5_test.dart
+++ b/tests/corelib/reg_exp5_test.dart
@@ -17,7 +17,7 @@ main() {
Expect.equals(null, fm);
Iterable<Match> am = new RegExp(r"^\w+$").allMatches(str);
- Expect.isFalse(am.iterator().hasNext);
+ Expect.isFalse(am.iterator.moveNext());
Expect.equals(null, new RegExp(r"^\w+$").stringMatch(str));
}
« no previous file with comments | « tests/corelib/reg_exp1_test.dart ('k') | tests/corelib/reg_exp_all_matches_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698