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

Unified Diff: tests/compiler/dart2js/pretty_parameter_test.dart

Issue 11817028: Random fixes discovered when looking through CL 11824035. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: More fixes. 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
Index: tests/compiler/dart2js/pretty_parameter_test.dart
diff --git a/tests/compiler/dart2js/pretty_parameter_test.dart b/tests/compiler/dart2js/pretty_parameter_test.dart
index 6831370643b6f9ffb30460c83f1f8c5725d49314..6bd0bddcde0364e05fee75c9d2f3637d02d26e84 100644
--- a/tests/compiler/dart2js/pretty_parameter_test.dart
+++ b/tests/compiler/dart2js/pretty_parameter_test.dart
@@ -101,7 +101,7 @@ main() {
regexp = new RegExp(r"a = 2;");
Iterator matches = regexp.allMatches(generated).iterator;
Expect.isTrue(matches.moveNext());
- Expect.isFalse(matches.moveNext);
+ Expect.isFalse(matches.moveNext());
ahe 2013/01/09 20:09:39 Why didn't this turn into a test failure?
floitsch 2013/03/04 15:26:27 Because the test was already marked as failing.
generated = compile(PARAMETER_INIT, entry: 'foo');
regexp = new RegExp("var result = start;");
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/compiler.dart ('k') | tests/language/double_to_string_as_exponential2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698