Skip to content

Commit

Permalink
ssh: fix cross compiled test builds
Browse files Browse the repository at this point in the history
  • Loading branch information
u3s committed Jan 3, 2024
1 parent f6d6092 commit b0a38be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/ssh/test/ssh_protocol_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ kex_strict_negotiated(Config0) ->
#{level := Level} = logger:get_primary_config(),
logger:set_primary_config(level, notice),
{ok, ConnRef} = std_connect({Host, Port}, Config, []),
{algorithms, A} = ssh:connection_info(ConnRef, algorithms),
{algorithms, _A} = ssh:connection_info(ConnRef, algorithms),
ssh:stop_daemon(Server),
{ok, Reports} = ssh_test_lib:get_reports(Pid),
ct:log("Reports = ~p", [Reports]),
Expand Down
2 changes: 1 addition & 1 deletion lib/ssh/test/ssh_to_openssh_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

-include_lib("common_test/include/ct.hrl").
-include("ssh_test_lib.hrl").
-include_lib("ssh/src/ssh_transport.hrl").
-include("ssh_transport.hrl").

-export([
suite/0,
Expand Down

0 comments on commit b0a38be

Please sign in to comment.