| Index: tests/standalone/src/io/SocketManyConnectionsTest.dart
|
| diff --git a/tests/standalone/src/io/SocketManyConnectionsTest.dart b/tests/standalone/src/io/SocketManyConnectionsTest.dart
|
| index bb7f9fbfe153da877d957399e07986eb0e9edaf9..0ee1cdc8a19ff81645cfa2116a8e7b1ee93d72b8 100644
|
| --- a/tests/standalone/src/io/SocketManyConnectionsTest.dart
|
| +++ b/tests/standalone/src/io/SocketManyConnectionsTest.dart
|
| @@ -74,8 +74,8 @@ class TestServer extends TestingServer {
|
| connection.close();
|
| }
|
|
|
| - void errorHandler() {
|
| - print("Socket error");
|
| + void errorHandler(Exception e) {
|
| + print("Socket error $e");
|
| connection.close();
|
| }
|
|
|
|
|