diff options
author | Hans Nilsson <[email protected]> | 2016-06-09 09:50:20 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2016-06-09 09:50:20 +0200 |
commit | 2f1ee6efa802f7f1089add9f87fd8b2804d5f124 (patch) | |
tree | 8fba5e470ffd044c94298f52cec7fe9bb2feec24 /lib | |
parent | 8619d3d6cf22ad267a5d902be0ddc768280c92fc (diff) | |
download | otp-2f1ee6efa802f7f1089add9f87fd8b2804d5f124.tar.gz otp-2f1ee6efa802f7f1089add9f87fd8b2804d5f124.tar.bz2 otp-2f1ee6efa802f7f1089add9f87fd8b2804d5f124.zip |
ssh: anonymize two unused variables in test suite
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssh/test/ssh_connection_SUITE.erl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/ssh/test/ssh_connection_SUITE.erl b/lib/ssh/test/ssh_connection_SUITE.erl index e0640caf08..bcf3b01824 100644 --- a/lib/ssh/test/ssh_connection_SUITE.erl +++ b/lib/ssh/test/ssh_connection_SUITE.erl @@ -125,7 +125,7 @@ simple_exec(Config) when is_list(Config) -> do_simple_exec(ConnectionRef). -simple_exec_sock(Config) -> +simple_exec_sock(_Config) -> {ok, Sock} = gen_tcp:connect("localhost", ?SSH_DEFAULT_PORT, [{active,false}]), {ok, ConnectionRef} = ssh:connect(Sock, [{silently_accept_hosts, true}, {user_interaction, false}]), @@ -602,10 +602,10 @@ start_shell_sock_daemon_exec(Config) -> spawn_link(fun() -> {ok,Ss} = gen_tcp:connect("localhost", Port, [{active,false}]), - {ok, Pid} = ssh:daemon(Ss, [{system_dir, SysDir}, - {user_dir, UserDir}, - {password, "morot"}, - {exec, fun ssh_exec/1}]) + {ok, _Pid} = ssh:daemon(Ss, [{system_dir, SysDir}, + {user_dir, UserDir}, + {password, "morot"}, + {exec, fun ssh_exec/1}]) end), {ok,Sc} = gen_tcp:accept(Sl), {ok,ConnectionRef} = ssh:connect(Sc, [{silently_accept_hosts, true}, |