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

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

Issue 22865043: Fix error in tests/standalone/io/http_cross_process_test.dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Retry upload Created 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/http_cross_process_test.dart
diff --git a/tests/standalone/io/http_cross_process_test.dart b/tests/standalone/io/http_cross_process_test.dart
index d3e69bde6600c32bf4ceaf17c0c27f6658931830..08329a9367dee7e7600d75613423b83f2044c154 100644
--- a/tests/standalone/io/http_cross_process_test.dart
+++ b/tests/standalone/io/http_cross_process_test.dart
@@ -53,7 +53,7 @@ Future runClientProcess(int port) {
runClient(int port) {
var client = new HttpClient();
- client.get(InternetAddress.LOOPBACK_IP_V4, port, "/")
+ client.get('127.0.0.1', port, "/")
.then((request) => request.close())
.then((response) => response.listen((data) {},
onDone: () => print('SUCCESS')));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698