Index: tests/standalone/io/http_read_test.dart |
diff --git a/tests/standalone/io/http_read_test.dart b/tests/standalone/io/http_read_test.dart |
index e9f9cfc6a86e5408e1a91eed73e6fa145ffa57df..e5f543ed175c6c494783eda220450b7063b1c244 100644 |
--- a/tests/standalone/io/http_read_test.dart |
+++ b/tests/standalone/io/http_read_test.dart |
@@ -126,7 +126,7 @@ class TestServer { |
void dispatch(message, SendPort replyTo) { |
if (message.isStart) { |
try { |
- HttpServer.bind().then((server) { |
+ HttpServer.bind("127.0.0.1", 0).then((server) { |
_server = server; |
_server.listen(_requestReceivedHandler); |
replyTo.send( |