fix(tests): fix include paths that were moved

This commit is contained in:
Thales Macedo Garitezi 2021-12-22 14:26:48 -03:00
parent 68cbded7c6
commit e137555052
No known key found for this signature in database
GPG Key ID: DD279F8152A9B6DD
4 changed files with 5 additions and 6 deletions

View File

@ -19,7 +19,7 @@
-compile(export_all).
-compile(nowarn_export_all).
-include_lib("emqx_gateway/src/mqttsn/include/emqx_sn.hrl").
-include("emqx_sn.hrl").
-include_lib("eunit/include/eunit.hrl").
%%--------------------------------------------------------------------
@ -181,4 +181,3 @@ gen_next(0, Acc) ->
gen_next(N, Acc) ->
Byte = rand:uniform(256) - 1,
gen_next(N-1, <<Acc/binary, Byte:8>>).

View File

@ -19,7 +19,7 @@
-compile(export_all).
-compile(nowarn_export_all).
-include_lib("emqx_gateway/src/mqttsn/include/emqx_sn.hrl").
-include("emqx_sn.hrl").
-include_lib("eunit/include/eunit.hrl").
-include_lib("common_test/include/ct.hrl").

View File

@ -17,7 +17,7 @@
-module(emqx_stomp_SUITE).
-include_lib("eunit/include/eunit.hrl").
-include_lib("emqx_gateway/src/stomp/include/emqx_stomp.hrl").
-include("emqx_stomp.hrl").
-compile(export_all).
-compile(nowarn_export_all).
@ -419,7 +419,7 @@ t_rest_clienit_info(_) ->
%%
%% TODO: Start/Stop, List Instace
%%
%% TODO: RateLimit, OOM,
%% TODO: RateLimit, OOM,
with_connection(DoFun) ->
{ok, Sock} = gen_tcp:connect({127, 0, 0, 1},

View File

@ -16,7 +16,7 @@
-module(emqx_sn_proper_types).
-include_lib("emqx_gateway/src/mqttsn/include/emqx_sn.hrl").
-include("emqx_sn.hrl").
-include_lib("proper/include/proper.hrl").
-compile({no_auto_import, [register/1]}).