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(); |
} |