| Index: tests/standalone/io/secure_session_resume_test.dart
|
| diff --git a/tests/standalone/io/secure_session_resume_test.dart b/tests/standalone/io/secure_session_resume_test.dart
|
| index 532dcecdd732c9d4dec442cf0944836ecbc90ae7..6e5f48b310e4496b239b306fb25ef98c35217d4c 100644
|
| --- a/tests/standalone/io/secure_session_resume_test.dart
|
| +++ b/tests/standalone/io/secure_session_resume_test.dart
|
| @@ -21,10 +21,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> startServer() {
|
| - return SecureServerSocket.bind(HOST_NAME,
|
| + return SecureServerSocket.bind(SERVER_ADDRESS,
|
| 0,
|
| 5,
|
| CERTIFICATE).then((server) {
|
|
|