| Index: tests/standalone/io/chunked_stream_test.dart
|
| diff --git a/tests/standalone/io/chunked_stream_test.dart b/tests/standalone/io/chunked_stream_test.dart
|
| index 9b4d00cf44bd58016171ec6a95c671d1fe70d0b0..2f343786db7abb5e0d14a8b19e093532d88910f5 100644
|
| --- a/tests/standalone/io/chunked_stream_test.dart
|
| +++ b/tests/standalone/io/chunked_stream_test.dart
|
| @@ -54,7 +54,7 @@ void test1() {
|
| }
|
|
|
| var _16k = 1024 * 16;
|
| - var data = new List<int>(_16k);
|
| + var data = new List<int>.fixedLength(_16k);
|
| for (int i = 0; i < _16k; i++) { data[i] = i % 256; }
|
|
|
| void testDone(int byteCount) {
|
|
|