Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: tests/standalone/io/secure_socket_test.dart

Issue 12295014: Remove deprecated Strings class. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/standalone/io/secure_socket_test.dart
diff --git a/tests/standalone/io/secure_socket_test.dart b/tests/standalone/io/secure_socket_test.dart
index e1fe2a8e332beceaebebb1001f2fc507af9245fb..f0104448ec8cfe86871babcd2179483014a05178 100644
--- a/tests/standalone/io/secure_socket_test.dart
+++ b/tests/standalone/io/secure_socket_test.dart
@@ -53,7 +53,7 @@ void main() {
};
secure.onData = useRead;
secure.onClosed = () {
- String fullPage = Strings.concatAll(chunks);
+ String fullPage = chunks.join();
Expect.isTrue(fullPage.contains('</body></html>'));
keepAlive.close();
};
« no previous file with comments | « tests/standalone/io/secure_socket_bad_certificate_test.dart ('k') | tests/standalone/io/secure_stream_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698