| Index: tests/standalone/src/io/SocketExceptionTest.dart
|
| diff --git a/tests/standalone/src/io/SocketExceptionTest.dart b/tests/standalone/src/io/SocketExceptionTest.dart
|
| index 5cae7dbb036aac247e3ab150de45abd30f9dc43c..ac668452680fa83e0eae9e721c129cd37e369185 100644
|
| --- a/tests/standalone/src/io/SocketExceptionTest.dart
|
| +++ b/tests/standalone/src/io/SocketExceptionTest.dart
|
| @@ -87,7 +87,7 @@ class SocketExceptionTest {
|
| exceptionCaught = false;
|
| try {
|
| List<int> buffer = new List<int>(42);
|
| - bool readDone = input.readInto(buffer, 0, 12);
|
| + input.readInto(buffer, 0, 12);
|
| } catch (SocketIOException ex) {
|
| exceptionCaught = true;
|
| } catch (Exception ex) {
|
|
|