aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2014-06-03 13:15:24 +0200
committerLoïc Hoguin <[email protected]>2014-06-03 13:15:24 +0200
commitea827acfd99421fbed1227c0d58c68a93173342d (patch)
treeaf1242ff013534989cf97bed0295a852aefb5391
parent0f75458a9c40dcfde73bd2b0d81185f89456df23 (diff)
parentc1298095d2b6098c32153b1cfcfe1aed8a6424ab (diff)
downloadgun-ea827acfd99421fbed1227c0d58c68a93173342d.tar.gz
gun-ea827acfd99421fbed1227c0d58c68a93173342d.tar.bz2
gun-ea827acfd99421fbed1227c0d58c68a93173342d.zip
Merge branch 'cowlib_test_fix' of git://github.com/seryl/gun
-rw-r--r--test/twitter_SUITE.erl2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/twitter_SUITE.erl b/test/twitter_SUITE.erl
index 865a2aa..17086e6 100644
--- a/test/twitter_SUITE.erl
+++ b/test/twitter_SUITE.erl
@@ -32,6 +32,7 @@ all() ->
init_per_suite(Config) ->
ok = application:start(ranch),
ok = application:start(crypto),
+ ok = application:start(cowlib),
ok = application:start(asn1),
ok = application:start(public_key),
ok = application:start(ssl),
@@ -43,6 +44,7 @@ end_per_suite(_) ->
ok = application:stop(ssl),
ok = application:stop(public_key),
ok = application:stop(asn1),
+ ok = application:stop(cowlib),
ok = application:stop(crypto),
ok = application:stop(ranch),
ok.