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(export_all).
-compile(nowarn_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("eunit/include/eunit.hrl").
%%-------------------------------------------------------------------- %%--------------------------------------------------------------------
@ -181,4 +181,3 @@ gen_next(0, Acc) ->
gen_next(N, Acc) -> gen_next(N, Acc) ->
Byte = rand:uniform(256) - 1, Byte = rand:uniform(256) - 1,
gen_next(N-1, <<Acc/binary, Byte:8>>). gen_next(N-1, <<Acc/binary, Byte:8>>).

View File

@ -19,7 +19,7 @@
-compile(export_all). -compile(export_all).
-compile(nowarn_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("eunit/include/eunit.hrl").
-include_lib("common_test/include/ct.hrl"). -include_lib("common_test/include/ct.hrl").

View File

@ -17,7 +17,7 @@
-module(emqx_stomp_SUITE). -module(emqx_stomp_SUITE).
-include_lib("eunit/include/eunit.hrl"). -include_lib("eunit/include/eunit.hrl").
-include_lib("emqx_gateway/src/stomp/include/emqx_stomp.hrl"). -include("emqx_stomp.hrl").
-compile(export_all). -compile(export_all).
-compile(nowarn_export_all). -compile(nowarn_export_all).

View File

@ -16,7 +16,7 @@
-module(emqx_sn_proper_types). -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"). -include_lib("proper/include/proper.hrl").
-compile({no_auto_import, [register/1]}). -compile({no_auto_import, [register/1]}).