diff options
author | badlop <badlop@process-one.net> | 2020-11-13 12:13:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-13 12:13:14 +0100 |
commit | 0f01019e060bd09f3ce888172e3b5732c8ffd1fa (patch) | |
tree | 14afe7b482b4fb759baf5f594d99c2eb677dbeca /test | |
parent | Update dependencies (diff) | |
parent | Add sql dir to extra_src_dirs (diff) |
Merge pull request #3395 from nosnilmot/rebar3
rebar3 support for main build process
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>">>). |