diff options
Diffstat (limited to 'lib/ssh/test')
-rw-r--r-- | lib/ssh/test/ssh_test_lib.erl | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/ssh/test/ssh_test_lib.erl b/lib/ssh/test/ssh_test_lib.erl index 4fd47da090..8b7d5e2992 100644 --- a/lib/ssh/test/ssh_test_lib.erl +++ b/lib/ssh/test/ssh_test_lib.erl @@ -27,10 +27,18 @@ -include_lib("public_key/include/public_key.hrl"). -include("test_server.hrl"). -include("test_server_line.hrl"). --include_lib("ssh/src/ssh.hrl"). -define(TIMEOUT, 50000). + +-record(ssh_key, + { + type, + public, + private, + comment = "" + }). + connect(Options) -> connect(hostname(), inet_port(), Options). |