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

Unified Diff: tests/standalone/io/file_fuzz_test.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 | « tests/standalone/io/directory_fuzz_test.dart ('k') | tests/standalone/io/http_auth_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/file_fuzz_test.dart
diff --git a/tests/standalone/io/file_fuzz_test.dart b/tests/standalone/io/file_fuzz_test.dart
index 873f03785a14945c57897ff01ac698bc0f379fcb..2d02795f2a8e7fddc9a569865f1f0cc83d822b10 100644
--- a/tests/standalone/io/file_fuzz_test.dart
+++ b/tests/standalone/io/file_fuzz_test.dart
@@ -59,7 +59,7 @@ fuzzAsyncMethods() {
});
});
});
- Futures.wait(futures).then((ignore) => port.close());
+ Future.wait(futures).then((ignore) => port.close());
}
@@ -112,7 +112,7 @@ fuzzAsyncRandomAccessMethods() {
futures.add(doItAsync(() => opened.writeList(p[0], p[1], p[2])));
}
}
- Futures.wait(futures).then((ignore) {
+ Future.wait(futures).then((ignore) {
for (var opened in openedFiles) {
opened.closeSync();
}
« no previous file with comments | « tests/standalone/io/directory_fuzz_test.dart ('k') | tests/standalone/io/http_auth_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698