| Index: tests/standalone/io/raw_secure_socket_pause_test.dart
|
| diff --git a/tests/standalone/io/raw_secure_socket_pause_test.dart b/tests/standalone/io/raw_secure_socket_pause_test.dart
|
| index a0d678f24e33f65dd2ed54e1829d53e8244ec5b5..dcd8129ae03fc5c5d57714586aadca287522acec 100644
|
| --- a/tests/standalone/io/raw_secure_socket_pause_test.dart
|
| +++ b/tests/standalone/io/raw_secure_socket_pause_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');
|
| }
|
|
|
|
|