From 2f35925ee19fa45b0e4cc36a0d216c9b185cfc45 Mon Sep 17 00:00:00 2001 From: Ingela Anderton Andin Date: Wed, 29 Nov 2023 15:04:18 +0100 Subject: [PATCH] inets: Cuddle test case --- lib/inets/test/inets_socketwrap_SUITE.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/inets/test/inets_socketwrap_SUITE.erl b/lib/inets/test/inets_socketwrap_SUITE.erl index e3851237e93f..eafe51345eff 100644 --- a/lib/inets/test/inets_socketwrap_SUITE.erl +++ b/lib/inets/test/inets_socketwrap_SUITE.erl @@ -81,7 +81,7 @@ start_httpd_fd(Config) when is_list(Config) -> Port when is_port(Port) -> wait_node_up(Node, 200), ct:pal("~p", [rpc:call(Node, init, get_argument, [httpd_80])]), - ok = rpc:call(Node, inets, start, []), + {ok, _} = rpc:call(Node, application, ensure_all_started, [inets]), {ok, Pid} = rpc:call(Node, inets, start, [httpd, HttpdConf]), [{port, InetPort}] = rpc:call(Node, httpd, info, [Pid, [port]]), rpc:call(Node, erlang, halt, []);