Index: tests/standalone/io/secure_client_raw_server_test.dart |
diff --git a/tests/standalone/io/secure_client_raw_server_test.dart b/tests/standalone/io/secure_client_raw_server_test.dart |
index a00e27b2841f85b62e4ec1faa9be56c23510072a..e72036abf7d6322d319a0f2388cf0d42817260d3 100644 |
--- a/tests/standalone/io/secure_client_raw_server_test.dart |
+++ b/tests/standalone/io/secure_client_raw_server_test.dart |
@@ -12,11 +12,10 @@ import "dart:async"; |
import "dart:io"; |
import "dart:isolate"; |
-const SERVER_ADDRESS = "127.0.0.1"; |
const HOST_NAME = "localhost"; |
const CERTIFICATE = "localhost_cert"; |
Future<RawSecureServerSocket> startEchoServer() { |
- return RawSecureServerSocket.bind(SERVER_ADDRESS, |
+ return RawSecureServerSocket.bind(HOST_NAME, |
0, |
5, |
CERTIFICATE).then((server) { |