| Index: tests/standalone/io/http_read_test.dart
|
| diff --git a/tests/standalone/io/http_read_test.dart b/tests/standalone/io/http_read_test.dart
|
| index 15e2606659602e785e4e2469a56bf6bea3ef9a15..b26e8651c35bd282002fb8b772654b393b4cffa4 100644
|
| --- a/tests/standalone/io/http_read_test.dart
|
| +++ b/tests/standalone/io/http_read_test.dart
|
| @@ -182,7 +182,7 @@ void testReadInto(bool chunkedEncoding) {
|
| InputStream stream = response.inputStream;
|
| List<int> body = new List<int>();
|
| stream.onData = () {
|
| - List tmp = new List(3);
|
| + List tmp = new List.fixedLength(3);
|
| int bytes = stream.readInto(tmp);
|
| body.addAll(tmp.getRange(0, bytes));
|
| };
|
|
|