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