| Index: tests/standalone/io/https_client_certificate_test.dart
|
| diff --git a/tests/standalone/io/https_client_certificate_test.dart b/tests/standalone/io/https_client_certificate_test.dart
|
| index fea97ef55ba6d164546f16916275f543e36051fe..720f0c62f27f8118b5c7ccbba55e24493be1cd25 100644
|
| --- a/tests/standalone/io/https_client_certificate_test.dart
|
| +++ b/tests/standalone/io/https_client_certificate_test.dart
|
| @@ -8,12 +8,13 @@ import "dart:io";
|
| import "dart:uri";
|
| import "dart:isolate";
|
|
|
| +const SERVER_ADDRESS = "127.0.0.1";
|
| const HOST_NAME = "localhost";
|
|
|
|
|
| Function test() {
|
| var keepAlive = new ReceivePort();
|
| - HttpServer.bindSecure(HOST_NAME,
|
| + HttpServer.bindSecure(SERVER_ADDRESS,
|
| 0,
|
| backlog: 5,
|
| certificateName: 'localhost_cert',
|
|
|