Index: tests/standalone/io/string_decoder_test.dart |
diff --git a/tests/standalone/io/string_decoder_test.dart b/tests/standalone/io/string_decoder_test.dart |
index 495267653400aae070ced693ee84dd732de3b5b1..5833fd4497da64ca7f93960d945c51517e1312ff 100644 |
--- a/tests/standalone/io/string_decoder_test.dart |
+++ b/tests/standalone/io/string_decoder_test.dart |
@@ -20,7 +20,7 @@ void test() { |
stream.reduce( |
new StringBuffer(), |
(b, e) { |
- b.add(e); |
+ b.write(e); |
return b; |
}) |
.then((b) => b.toString()) |