| Index: tests/standalone/io/secure_client_server_test.dart
 | 
| diff --git a/tests/standalone/io/secure_client_server_test.dart b/tests/standalone/io/secure_client_server_test.dart
 | 
| index 494d54cf89747bfcecb5624e2c4f9e44ada1516c..6681c1125f489f288d40fc19e69e9eb63f5a4506 100644
 | 
| --- a/tests/standalone/io/secure_client_server_test.dart
 | 
| +++ b/tests/standalone/io/secure_client_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<SecureServerSocket> startEchoServer() {
 | 
| -  return SecureServerSocket.bind(HOST_NAME,
 | 
| +  return SecureServerSocket.bind(SERVER_ADDRESS,
 | 
|                                   0,
 | 
|                                   5,
 | 
|                                   CERTIFICATE).then((server) {
 | 
| 
 |