| Index: tests/standalone/src/io/StreamPipeTest.dart
|
| diff --git a/tests/standalone/src/io/StreamPipeTest.dart b/tests/standalone/src/io/StreamPipeTest.dart
|
| index 221a656bce6f53753646718f919e2e75133c562f..1c632e3fb232244b08040c7b9f35329d331cb215 100644
|
| --- a/tests/standalone/src/io/StreamPipeTest.dart
|
| +++ b/tests/standalone/src/io/StreamPipeTest.dart
|
| @@ -152,7 +152,7 @@ class PipeServerGame {
|
| // stream to its output stream.
|
| class PipeServer extends TestingServer {
|
| void onConnection(Socket connection) {
|
| - connection.onError = () { Expect.fail("Socket error"); };
|
| + connection.onError = (Exception e) { Expect.fail("Socket error $e"); };
|
| connection.inputStream.pipe(connection.outputStream);
|
| }
|
| }
|
|
|