| Index: tests/standalone/src/io/ChunkedStreamTest.dart
|
| diff --git a/tests/standalone/src/io/ChunkedStreamTest.dart b/tests/standalone/src/io/ChunkedStreamTest.dart
|
| index 92e8289b2d475daf20d20624e9eb1380f5b35e35..30c9349f47c661c0f06888aefb257008b9c60bca 100644
|
| --- a/tests/standalone/src/io/ChunkedStreamTest.dart
|
| +++ b/tests/standalone/src/io/ChunkedStreamTest.dart
|
| @@ -7,7 +7,7 @@
|
|
|
| void test1() {
|
| void testWithChunkSize(var data, int chunkSize, Function testDone) {
|
| - InputStream list_input_stream = new ListInputStream();
|
| + ListInputStream list_input_stream = new ListInputStream();
|
| list_input_stream.write(data);
|
| list_input_stream.markEndOfStream();
|
| ChunkedInputStream stream = new ChunkedInputStream(list_input_stream);
|
| @@ -68,7 +68,7 @@ void test1() {
|
|
|
|
|
| void test2() {
|
| - InputStream s = new ListInputStream();
|
| + ListInputStream s = new ListInputStream();
|
| ChunkedInputStream stream = new ChunkedInputStream(s);
|
| stream.chunkSize = 5;
|
| ReceivePort donePort = new ReceivePort();
|
|
|