| Index: tests/html/fileapi_test.dart
|
| diff --git a/tests/html/fileapi_test.dart b/tests/html/fileapi_test.dart
|
| index 031f1f19228d400357decf2d9352bd7a0d6a4af9..2b3b2a39cce49b61727297b0747ca1ad30fb3e85 100644
|
| --- a/tests/html/fileapi_test.dart
|
| +++ b/tests/html/fileapi_test.dart
|
| @@ -9,13 +9,13 @@ void fail(message) {
|
| });
|
| }
|
|
|
| -DOMFileSystem fs;
|
| +FileSystem fs;
|
|
|
| main() {
|
| useHtmlConfiguration();
|
| test('getFileSystem', () {
|
| window.webkitRequestFileSystem(LocalWindow.TEMPORARY, 100, expectAsync1(
|
| - (DOMFileSystem fileSystem) {
|
| + (FileSystem fileSystem) {
|
| fs = fileSystem;
|
| }),
|
| (e) {
|
|
|