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

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

Issue 486853005: Fix idle connection pool issue in dart:io's HttpClient (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fixed existing tests, removed bogus test, use async_helper for new test Created 6 years, 4 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
« no previous file with comments | « dart/tests/standalone/io/http_cross_process_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/standalone/io/https_bad_certificate_client.dart
diff --git a/dart/tests/standalone/io/https_bad_certificate_client.dart b/dart/tests/standalone/io/https_bad_certificate_client.dart
index 064131f7157143e07e52fff5a040fb8f72c579d8..35edb696f53f52605cf13f4f90e1d2d8a29b8c0d 100644
--- a/dart/tests/standalone/io/https_bad_certificate_client.dart
+++ b/dart/tests/standalone/io/https_bad_certificate_client.dart
@@ -69,7 +69,7 @@ Future runHttpClient(int port, result) {
expect(e is HandshakeException || e is SocketException);
}));
- return Future.wait(testFutures);
+ return Future.wait(testFutures).then((_) => client.close());
}
void main(List<String> args) {
« no previous file with comments | « dart/tests/standalone/io/http_cross_process_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698