| 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 847b19a72b1b3c6c367d8aa96aa6d3356a055c24..e27e74214824f70f7787bad8cf8b752bae2e9c58 100644
|
| --- a/tests/standalone/io/https_client_certificate_test.dart
|
| +++ b/tests/standalone/io/https_client_certificate_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";
|
| @@ -44,9 +45,8 @@ Function test() {
|
| }
|
|
|
| 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');
|
| }
|
|
|
|
|