| Index: tests/standalone/io/async_catch_errors_test.dart
|
| diff --git a/tests/standalone/io/async_catch_errors_test.dart b/tests/standalone/io/async_catch_errors_test.dart
|
| index 68ebec0790c15169c53671aa15694c178da6eaaf..7107bf20ecf2f6712bb7d191801994036830aa47 100644
|
| --- a/tests/standalone/io/async_catch_errors_test.dart
|
| +++ b/tests/standalone/io/async_catch_errors_test.dart
|
| @@ -9,7 +9,7 @@ import 'dart:io';
|
|
|
| var events = [];
|
|
|
| -void testSocketException() {
|
| +Future testSocketException() {
|
| var completer = new Completer();
|
| runZonedExperimental(() {
|
| Socket.connect("4", 1).then((Socket s) {
|
| @@ -23,7 +23,7 @@ void testSocketException() {
|
| return completer.future;
|
| }
|
|
|
| -void testFileException() {
|
| +Future testFileException() {
|
| var completer = new Completer();
|
| runZonedExperimental(() {
|
| new File("lol it's not a file\n").openRead().listen(null);
|
|
|