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

Unified Diff: tests/html/fileapi_test.dart

Issue 10824374: Fix fileapi_test.dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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 | « no previous file | tests/html/html.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/fileapi_test.dart
diff --git a/tests/html/fileapi_test.dart b/tests/html/fileapi_test.dart
index e423d012c6ce1648ac11bdad805169ef2979044a..6b85308493fee4975d8bf7d0a5fc5b176d3d12ed 100644
--- a/tests/html/fileapi_test.dart
+++ b/tests/html/fileapi_test.dart
@@ -14,7 +14,7 @@ main() {
fs.root.getDirectory(
'directory2',
- flags: {},
+ options: {},
successCallback: expectAsync1((e) {
expect(false, 'Should not be reached');
}, count:0),
@@ -24,7 +24,7 @@ main() {
fs.root.getDirectory(
'directory3',
- flags: {'create': true},
+ options: {'create': true},
successCallback: expectAsync1((e) {
expect(e.name, equals('directory3'));
}),
@@ -38,7 +38,7 @@ main() {
fs.root.getDirectory(
'file2',
- flags: {},
+ options: {},
successCallback: expectAsync1((e) {
expect(false, 'Should not be reached');
}, count:0),
@@ -48,7 +48,7 @@ main() {
fs.root.getDirectory(
'file3',
- flags: {'create': true},
+ options: {'create': true},
successCallback: expectAsync1((e) {
expect(e.name, equals('file3'));
}),
« no previous file with comments | « no previous file | tests/html/html.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698