From b0a38beef022dcfd542252cf9c4e07d18d454f20 Mon Sep 17 00:00:00 2001 From: Jakub Witczak Date: Wed, 3 Jan 2024 14:30:34 +0100 Subject: [PATCH] ssh: fix cross compiled test builds --- lib/ssh/test/ssh_protocol_SUITE.erl | 2 +- lib/ssh/test/ssh_to_openssh_SUITE.erl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ssh/test/ssh_protocol_SUITE.erl b/lib/ssh/test/ssh_protocol_SUITE.erl index 0d83238b920d..19fd8a7c77f9 100644 --- a/lib/ssh/test/ssh_protocol_SUITE.erl +++ b/lib/ssh/test/ssh_protocol_SUITE.erl @@ -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]), diff --git a/lib/ssh/test/ssh_to_openssh_SUITE.erl b/lib/ssh/test/ssh_to_openssh_SUITE.erl index 5a8f4b31187d..524e9d98bb33 100644 --- a/lib/ssh/test/ssh_to_openssh_SUITE.erl +++ b/lib/ssh/test/ssh_to_openssh_SUITE.erl @@ -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,