Browse Source

Error out if Ranch can't be started in the test suite

Loïc Hoguin 12 years ago
parent
commit
e66db84e39
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/acceptor_SUITE.erl

+ 1 - 1
test/acceptor_SUITE.erl

@@ -55,7 +55,7 @@ groups() ->
 	]}].
 	]}].
 
 
 init_per_suite(Config) ->
 init_per_suite(Config) ->
-	application:start(ranch),
+	ok = application:start(ranch),
 	Config.
 	Config.
 
 
 end_per_suite(_) ->
 end_per_suite(_) ->