| Index: tests/standalone/src/SocketExceptionTest.dart
|
| diff --git a/tests/standalone/src/SocketExceptionTest.dart b/tests/standalone/src/SocketExceptionTest.dart
|
| index 854db315477def8895ba2a99a5746fc79b3b97a0..ba92db3335c37356826db0e66c993912422d35b0 100644
|
| --- a/tests/standalone/src/SocketExceptionTest.dart
|
| +++ b/tests/standalone/src/SocketExceptionTest.dart
|
| @@ -104,7 +104,7 @@ class SocketExceptionTest {
|
| exceptionCaught = false;
|
| try {
|
| List<int> buffer = new List<int>(42);
|
| - bool readDone = output.write(buffer, 0, 12, null);
|
| + output.writeFrom(buffer, 0, 12);
|
| } catch (SocketIOException ex) {
|
| exceptionCaught = true;
|
| } catch (Exception ex) {
|
|
|