chore: drop few unused macros / includes

This commit is contained in:
Andrew Mayorov 2022-12-08 15:24:45 +03:00
parent a614e3065a
commit c301c8e992
No known key found for this signature in database
GPG Key ID: 2837C62ACFBFED5D
4 changed files with 0 additions and 14 deletions

View File

@ -16,8 +16,6 @@
-module(emqx_common_test_helpers).
-include_lib("common_test/include/ct.hrl").
-type special_config_handler() :: fun().
-type apps() :: list(atom()).
@ -78,12 +76,6 @@
-define(CERTS_PATH(CertName), filename:join(["etc", "certs", CertName])).
-define(MQTT_SSL_TWOWAY, [
{cacertfile, ?CERTS_PATH("cacert.pem")},
{verify, verify_peer},
{fail_if_no_peer_cert, true}
]).
-define(MQTT_SSL_CLIENT_CERTS, [
{keyfile, ?CERTS_PATH("client-key.pem")},
{cacertfile, ?CERTS_PATH("cacert.pem")},

View File

@ -19,7 +19,6 @@
-compile(export_all).
-compile(nowarn_export_all).
-include("emqx.hrl").
-include_lib("eunit/include/eunit.hrl").
-include_lib("common_test/include/ct.hrl").
-include_lib("snabbkaffe/include/snabbkaffe.hrl").

View File

@ -21,8 +21,6 @@
-include_lib("emqx/include/emqx.hrl").
-include_lib("eunit/include/eunit.hrl").
-include_lib("common_test/include/ct.hrl").
-include_lib("snabbkaffe/include/snabbkaffe.hrl").
-define(SUITE, ?MODULE).

View File

@ -19,10 +19,7 @@
-compile(export_all).
-compile(nowarn_export_all).
-include("emqx_conf.hrl").
-include_lib("eunit/include/eunit.hrl").
-include_lib("common_test/include/ct.hrl").
-include_lib("snabbkaffe/include/snabbkaffe.hrl").
all() ->
emqx_common_test_helpers:all(?MODULE).