| Index: tests/standalone/src/io/HttpClientTest.dart
|
| diff --git a/tests/standalone/src/io/HttpClientTest.dart b/tests/standalone/src/io/HttpClientTest.dart
|
| index 773dd8743bc18c6fd15e8b3f0640679f36c2ffdd..897e921256ff9f1f69146ce1b4262d2445b09a29 100644
|
| --- a/tests/standalone/src/io/HttpClientTest.dart
|
| +++ b/tests/standalone/src/io/HttpClientTest.dart
|
| @@ -14,7 +14,7 @@ void testGoogle() {
|
| };
|
| conn.onResponse = (HttpClientResponse response) {
|
| Expect.isTrue(response.statusCode < 500);
|
| - response.inputStream.onClosed = () {
|
| + response.inputStream.onData = () {
|
| response.inputStream.read();
|
| };
|
| response.inputStream.onClosed = () {
|
|
|