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

Unified Diff: tests/lib/async/future_test.dart

Issue 11866003: Support Timer with 0 millisecond delay in dart2js running in the command line. (Closed) Base URL: http://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/language/language_dart2js.status ('k') | tests/lib/lib.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/future_test.dart
===================================================================
--- tests/lib/async/future_test.dart (revision 16956)
+++ tests/lib/async/future_test.dart (working copy)
@@ -19,8 +19,8 @@
testNeverComplete() {
final completer = new Completer<int>();
final future = completer.future;
- future.then((v) => Except.fails("Value not expected"));
- future.catchError((e) => Except.fails("Value not expected"));
+ future.then((v) => Expect.fails("Value not expected"));
+ future.catchError((e) => Expect.fails("Value not expected"));
}
testComplete() {
« no previous file with comments | « tests/language/language_dart2js.status ('k') | tests/lib/lib.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698