| 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 6ca31bc335098ec87eac159f1ecbfac8d04943ab..a574206be11e8753a66d0f805e9722090381c311 100644
|
| --- a/tests/standalone/io/https_server_test.dart
|
| +++ b/tests/standalone/io/https_server_test.dart
|
| @@ -3,6 +3,7 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| import "package:expect/expect.dart";
|
| +import "package:path/path.dart";
|
| import "dart:async";
|
| import "dart:io";
|
| import "dart:isolate";
|
| @@ -58,9 +59,8 @@ void testListenOn() {
|
| }
|
|
|
| void InitializeSSL() {
|
| - var testPkcertDatabase =
|
| - new Path(Platform.script).directoryPath.append('pkcert/');
|
| - SecureSocket.initialize(database: testPkcertDatabase.toNativePath(),
|
| + var testPkcertDatabase = join(dirname(Platform.script), 'pkcert');
|
| + SecureSocket.initialize(database: testPkcertDatabase,
|
| password: 'dartdart');
|
| }
|
|
|
|
|