| Index: tests/standalone/io/secure_stream_test.dart
|
| diff --git a/tests/standalone/io/secure_stream_test.dart b/tests/standalone/io/secure_stream_test.dart
|
| index 63c0fce8558cd9a77de803af334566f5c14b3819..11acb7b3bc3950a158ebcf07ab81c2b6fb874409 100644
|
| --- a/tests/standalone/io/secure_stream_test.dart
|
| +++ b/tests/standalone/io/secure_stream_test.dart
|
| @@ -29,7 +29,7 @@ void main() {
|
| chunks.add(new String.fromCharCodes(input.read()));
|
| };
|
| input.onClosed = () {
|
| - String fullPage = Strings.concatAll(chunks);
|
| + String fullPage = chunks.join();
|
| Expect.isTrue(fullPage.contains('</body></html>'));
|
| keepAlive.close();
|
| };
|
|
|