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