| 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')));
|
|
|