From 86c16fdccc48b1e97424a1e1fd59d95ebf4a35a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Fri, 6 Sep 2019 13:33:15 +0200 Subject: Rename Gun's transport_opts to tls_opts --- test/cowboy_test.erl | 2 +- test/req_SUITE.erl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cowboy_test.erl b/test/cowboy_test.erl index a8cb364..1591a5f 100644 --- a/test/cowboy_test.erl +++ b/test/cowboy_test.erl @@ -111,7 +111,7 @@ gun_open(Config, Opts) -> {ok, ConnPid} = gun:open("localhost", config(port, Config), Opts#{ retry => 0, transport => config(type, Config), - transport_opts => proplists:get_value(transport_opts, Config, []), + tls_opts => proplists:get_value(tls_opts, Config, []), protocols => [config(protocol, Config)] }), ConnPid. diff --git a/test/req_SUITE.erl b/test/req_SUITE.erl index ac6e4a9..174a38b 100644 --- a/test/req_SUITE.erl +++ b/test/req_SUITE.erl @@ -186,7 +186,7 @@ cert(Config) -> do_cert(Config0) -> doc("A client TLS certificate was provided."), {CaCert, Cert, Key} = ct_helper:make_certs(), - Config = [{transport_opts, [ + Config = [{tls_opts, [ {cert, Cert}, {key, Key}, {cacerts, [CaCert]} -- cgit v1.2.3