summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPablo Polvorin <pablo@work>2016-07-22 19:15:56 -0300
committerPablo Polvorin <pablo@work>2016-07-22 19:15:56 -0300
commit57aeef74d5f572438d60a0c8e7a4f9c9933d3852 (patch)
tree7eac19ca3472a20925b2aea462dd7983dc066383 /test
parentFix elixir test case: stringprep was required (diff)
stringprep might already be started
Depending on the way the test us ran (full test suite or the elixir quicktest one) the stringprep might already be loaded.
Diffstat (limited to 'test')
-rw-r--r--test/acl_test.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/acl_test.exs b/test/acl_test.exs
index c5482727..4bd8e698 100644
--- a/test/acl_test.exs
+++ b/test/acl_test.exs
@@ -26,7 +26,7 @@ defmodule ACLTest do
setup_all do
:ok = :mnesia.start
:ok = :jid.start
- :ok = :stringprep.start
+ :stringprep.start
:ok = :ejabberd_config.start(["domain1", "domain2"], [])
:ok = :acl.start
end