diff options
author | Stu Tomlinson <stu@nosnilmot.com> | 2020-09-23 15:52:21 +0100 |
---|---|---|
committer | Stu Tomlinson <stu@nosnilmot.com> | 2020-09-23 15:52:21 +0100 |
commit | 714bc2d329e577b080779d14575fbaee1a537f94 (patch) | |
tree | 03dfaccb827ae8f37a9575dbbd22db1977c228b4 /test | |
parent | rebar3 support for main build process (diff) |
Miscellaneous rebar3 fixes
Correct Makefile clean targets
Fix a few more include() -> include_lib() for depedency includes
Use project_app_dirs to reference elixir app from rebar3 (lib_dirs is
no longer supported)
Diffstat (limited to 'test')
-rw-r--r-- | test/muc_tests.erl | 1 | ||||
-rw-r--r-- | test/suite.hrl | 5 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/muc_tests.erl b/test/muc_tests.erl index b59324a6c..66a73acca 100644 --- a/test/muc_tests.erl +++ b/test/muc_tests.erl @@ -31,7 +31,6 @@ disconnect/1, put_event/2, get_event/1, peer_muc_jid/1, my_muc_jid/1, get_features/2, set_opt/3]). -include("suite.hrl"). --include("jid.hrl"). %%%=================================================================== %%% API diff --git a/test/suite.hrl b/test/suite.hrl index b3bab6c12..d8ea3e23b 100644 --- a/test/suite.hrl +++ b/test/suite.hrl @@ -1,8 +1,9 @@ -include_lib("common_test/include/ct.hrl"). -include_lib("fast_xml/include/fxml.hrl"). --include("ns.hrl"). +-include_lib("xmpp/include/jid.hrl"). +-include_lib("xmpp/include/ns.hrl"). +-include_lib("xmpp/include/xmpp_codec.hrl"). -include("mod_proxy65.hrl"). --include("xmpp_codec.hrl"). -define(STREAM_TRAILER, <<"</stream:stream>">>). |