| Index: tests/standalone/io/raw_secure_socket_test.dart
|
| diff --git a/tests/standalone/io/raw_secure_socket_test.dart b/tests/standalone/io/raw_secure_socket_test.dart
|
| index 228bfd3329e4b3b173c2b78ab1017696640f80aa..4a6872c536354c6a67a601463aa2c957ee345426 100644
|
| --- a/tests/standalone/io/raw_secure_socket_test.dart
|
| +++ b/tests/standalone/io/raw_secure_socket_test.dart
|
| @@ -8,6 +8,7 @@
|
| // VMOptions=--short_socket_read --short_socket_write
|
|
|
| import "package:expect/expect.dart";
|
| +import "package:path/path.dart";
|
| import "dart:async";
|
| import "dart:io";
|
| import "dart:isolate";
|
| @@ -34,9 +35,8 @@ Future<HttpServer> startServer() {
|
| }
|
|
|
| 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');
|
| }
|
|
|
|
|