| Index: tests/standalone/src/io/TestingServer.dart
|
| diff --git a/tests/standalone/src/io/TestingServer.dart b/tests/standalone/src/io/TestingServer.dart
|
| index 74c008fb6271921f436af993365dc3d46115c21f..f80288796282b858e1cbc053aabe4e2394597f3b 100644
|
| --- a/tests/standalone/src/io/TestingServer.dart
|
| +++ b/tests/standalone/src/io/TestingServer.dart
|
| @@ -11,8 +11,8 @@ class TestingServer extends Isolate {
|
| abstract void onConnection();
|
|
|
| void main() {
|
| - void errorHandlerServer() {
|
| - Expect.fail("Server socket error");
|
| + void errorHandlerServer(Exception e) {
|
| + Expect.fail("Server socket error $e");
|
| }
|
|
|
| this.port.receive((message, SendPort replyTo) {
|
|
|