| Index: tests/standalone/io/string_stream_test.dart
|
| diff --git a/tests/standalone/io/string_stream_test.dart b/tests/standalone/io/string_stream_test.dart
|
| index ade6c8d695dd43ad64b7709599ae278741ad6fc2..6e7e6a91317fd03b82fa7b136e3cc94197ce6eb0 100644
|
| --- a/tests/standalone/io/string_stream_test.dart
|
| +++ b/tests/standalone/io/string_stream_test.dart
|
| @@ -278,7 +278,7 @@ class ErrorInputStream implements InputStream {
|
| List<int> read([int len]) => null;
|
| int readInto(List<int> buffer, [int offset, int len]) => 0;
|
| int available() => 0;
|
| - void pipe(OutputStream output, [bool close]){ }
|
| + void pipe(OutputStream output, {bool close: true}){ }
|
| void close() { }
|
| bool get closed => true;
|
| void set onData(void callback()) { }
|
|
|