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

Unified Diff: tests/html/fileapi_test.dart

Issue 14070010: Refactor Future constructors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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/html/fileapi_test.dart
diff --git a/tests/html/fileapi_test.dart b/tests/html/fileapi_test.dart
index 697f17603f1c1d2a3a79b459c3f658ef322a97e0..1ad12af337849dca56daf9eb06a36406e9b9e01d 100644
--- a/tests/html/fileapi_test.dart
+++ b/tests/html/fileapi_test.dart
@@ -99,7 +99,7 @@ main() {
return fs.root.createDirectory(
'directory3')
.then((DirectoryEntry dir) {
- return new Future.immediate(new FileAndDir(file, dir));
+ return new Future.value(new FileAndDir(file, dir));
});
});
}

Powered by Google App Engine
This is Rietveld 408576698