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, []);