| Index: tests/standalone/src/FileTest.dart
|
| diff --git a/tests/standalone/src/FileTest.dart b/tests/standalone/src/FileTest.dart
|
| index 8f854b0b1dfedb21c5c3c860795432733fbe0cfa..9e9f86038a3d56ca7296d92c51055e3f6f21dcee 100644
|
| --- a/tests/standalone/src/FileTest.dart
|
| +++ b/tests/standalone/src/FileTest.dart
|
| @@ -760,6 +760,7 @@ class FileTest {
|
|
|
| // Tests stream exception handling after file was closed.
|
| static void testCloseExceptionStream() {
|
| + asyncTestStarted();
|
| List<int> buffer = new List<int>(42);
|
| File file = new File(tempDirectory.path + "/out_close_exception_stream");
|
| file.createSync();
|
| @@ -771,6 +772,7 @@ class FileTest {
|
| output.close();
|
| Expect.throws(() => output.writeFrom(buffer, 0, 12));
|
| file.deleteSync();
|
| + asyncTestDone("testCloseExceptionStream");
|
| };
|
| }
|
|
|
|
|