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

Unified Diff: pkg/intl/test/date_time_format_local_test_stub.dart

Issue 11865005: Remove Futures class, move methods to Future. (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 | « pkg/intl/test/date_time_format_http_request_test.dart ('k') | samples/dartcombat/state.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/intl/test/date_time_format_local_test_stub.dart
diff --git a/pkg/intl/test/date_time_format_local_test_stub.dart b/pkg/intl/test/date_time_format_local_test_stub.dart
index 6a5225d75ee4a4740048da076985724f389db915..048a144825ea7974e1d417a562492bd6c3c67fd0 100644
--- a/pkg/intl/test/date_time_format_local_test_stub.dart
+++ b/pkg/intl/test/date_time_format_local_test_stub.dart
@@ -28,5 +28,5 @@ void runEverything(Function getSubset) {
var futures = DateFormat.allLocalesWithSymbols()
.mappedBy((locale) => initializeDateFormatting(locale, null))
.toList();
- Futures.wait(futures).then((results) => runDateTests(getSubset()));
+ Future.wait(futures).then((results) => runDateTests(getSubset()));
}
« no previous file with comments | « pkg/intl/test/date_time_format_http_request_test.dart ('k') | samples/dartcombat/state.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698