| Index: tests/standalone/io/stdout_stderr_test.dart
|
| diff --git a/tests/standalone/io/stdout_stderr_test.dart b/tests/standalone/io/stdout_stderr_test.dart
|
| index ee15c6b6181ae0eec4b52fc3108e24b2cc308e8e..4775891cc5ec32ab92472abbd82de4501404af90 100644
|
| --- a/tests/standalone/io/stdout_stderr_test.dart
|
| +++ b/tests/standalone/io/stdout_stderr_test.dart
|
| @@ -14,7 +14,7 @@ callIOSink(IOSink sink) {
|
| sink.writeln("Hello");
|
| sink.writeAll(["H", "e", "l", "lo\n"]);
|
| sink.writeCharCode(72);
|
| - sink.writeBytes([101, 108, 108, 111, 10]);
|
| + sink.add([101, 108, 108, 111, 10]);
|
|
|
| var controller = new StreamController();
|
| sink.writeStream(controller.stream);
|
|
|