Index: tests/standalone/io/directory_fuzz_test.dart |
diff --git a/tests/standalone/io/directory_fuzz_test.dart b/tests/standalone/io/directory_fuzz_test.dart |
index 625e994144f6ef5b792a8d631878be56114d2755..3d982e6459e777eb2bb2ab36cf04104776446a4f 100644 |
--- a/tests/standalone/io/directory_fuzz_test.dart |
+++ b/tests/standalone/io/directory_fuzz_test.dart |
@@ -5,10 +5,10 @@ |
// 'fuzz' test the directory APIs by providing unexpected type |
// arguments. The test passes if the VM does not crash. |
-#import('dart:io'); |
-#import('dart:isolate'); |
+import "dart:io"; |
+import "dart:isolate"; |
-#import('fuzz_support.dart'); |
+import "fuzz_support.dart"; |
fuzzSyncMethods() { |
typeMapping.forEach((k, v) { |
@@ -27,7 +27,7 @@ fuzzSyncMethods() { |
}); |
typeMapping.forEach((k2, v2) { |
doItSync(() => d.renameSync(v2)); |
- doItSync(() => d.list(v2).onError = (e) => null); |
+ doItSync(() => d.list(recursive: v2).onError = (e) => null); |
}); |
}); |
}); |