| Index: tests/standalone/io/https_server_test.dart
|
| diff --git a/tests/standalone/io/https_server_test.dart b/tests/standalone/io/https_server_test.dart
|
| index 08fec0c2ecd80b7ec5728ac4ee8bb8f46e86b021..fbefbeb1f43810ef8178c5780286645b3f80659f 100644
|
| --- a/tests/standalone/io/https_server_test.dart
|
| +++ b/tests/standalone/io/https_server_test.dart
|
| @@ -8,11 +8,12 @@ import "dart:io";
|
| import "dart:uri";
|
| import "dart:isolate";
|
|
|
| +const SERVER_ADDRESS = "127.0.0.1";
|
| const HOST_NAME = "localhost";
|
|
|
| void testListenOn() {
|
| void test(void onDone()) {
|
| - HttpServer.bindSecure(HOST_NAME,
|
| + HttpServer.bindSecure(SERVER_ADDRESS,
|
| 0,
|
| backlog: 5,
|
| certificateName: 'localhost_cert').then((server) {
|
|
|