Chromium Code Reviews

Unified Diff: tests/standalone/io/secure_socket_bad_certificate_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.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « tests/language/string_test.dart ('k') | tests/standalone/io/secure_socket_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/secure_socket_bad_certificate_test.dart
diff --git a/tests/standalone/io/secure_socket_bad_certificate_test.dart b/tests/standalone/io/secure_socket_bad_certificate_test.dart
index e3a2616e381904232520883e044f53c03a330802..d53dd9324cf3ec267a6f07a68dcb3162bbc202da 100644
--- a/tests/standalone/io/secure_socket_bad_certificate_test.dart
+++ b/tests/standalone/io/secure_socket_bad_certificate_test.dart
@@ -63,7 +63,7 @@ Future testCertificateCallback({String host, bool acceptCertificate}) {
};
secure.onClosed = () {
Expect.isTrue(acceptCertificate);
- String fullPage = Strings.concatAll(chunks);
+ String fullPage = chunks.join();
Expect.isTrue(fullPage.contains('</body></html>'));
completer.complete(null);
};
« no previous file with comments | « tests/language/string_test.dart ('k') | tests/standalone/io/secure_socket_test.dart » ('j') | no next file with comments »

Powered by Google App Engine