| Index: tests/standalone/io/secure_socket_renegotiate_test.dart
|
| diff --git a/tests/standalone/io/secure_socket_renegotiate_test.dart b/tests/standalone/io/secure_socket_renegotiate_test.dart
|
| index 8e772e5a12c6ea36c671afa98ba39d555e7471ee..b93824428524cc6f399786e6b80f7f62d79b0d2d 100644
|
| --- a/tests/standalone/io/secure_socket_renegotiate_test.dart
|
| +++ b/tests/standalone/io/secure_socket_renegotiate_test.dart
|
| @@ -7,7 +7,7 @@
|
| // can request a client certificate to be sent.
|
|
|
| import "package:expect/expect.dart";
|
| -import "package:path/path.dart" as path;
|
| +import "package:path/path.dart";
|
| import "dart:async";
|
| import "dart:io";
|
|
|
| @@ -15,13 +15,12 @@ const HOST_NAME = "localhost";
|
| const CERTIFICATE = "localhost_cert";
|
|
|
|
|
| -String certificateDatabase() =>
|
| - path.join(path.dirname(new Options().script), 'pkcert', '');
|
| +String certificateDatabase() => join(dirname(new Options().script), 'pkcert');
|
|
|
|
|
| Future<SecureServerSocket> runServer() {
|
| SecureSocket.initialize(database: certificateDatabase(),
|
| - password: 'dartdart');
|
| + password: 'dartdart');
|
|
|
| return SecureServerSocket.bind(HOST_NAME, 0, CERTIFICATE)
|
| .then((SecureServerSocket server) {
|
|
|