| 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 e72036abf7d6322d319a0f2388cf0d42817260d3..a00e27b2841f85b62e4ec1faa9be56c23510072a 100644
 | 
| --- a/tests/standalone/io/secure_client_raw_server_test.dart
 | 
| +++ b/tests/standalone/io/secure_client_raw_server_test.dart
 | 
| @@ -12,10 +12,11 @@ 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(HOST_NAME,
 | 
| +  return RawSecureServerSocket.bind(SERVER_ADDRESS,
 | 
|                                      0,
 | 
|                                      5,
 | 
|                                      CERTIFICATE).then((server) {
 | 
| 
 |