aboutsummaryrefslogtreecommitdiffstats
path: root/test/mysqlerl_connect_SUITE.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/mysqlerl_connect_SUITE.erl')
-rw-r--r--test/mysqlerl_connect_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mysqlerl_connect_SUITE.erl b/test/mysqlerl_connect_SUITE.erl
index 03baa13..e6d5107 100644
--- a/test/mysqlerl_connect_SUITE.erl
+++ b/test/mysqlerl_connect_SUITE.erl
@@ -28,7 +28,7 @@ suite() ->
%% @end
%%--------------------------------------------------------------------
init_per_suite(Config) ->
- mysqlerl_test_lib:create_db(Config),
+ ok = mysqlerl_test_lib:create_db(Config),
ok = application:start(mysqlerl),
Config.
@@ -39,7 +39,7 @@ init_per_suite(Config) ->
%%--------------------------------------------------------------------
end_per_suite(Config) ->
ok = application:stop(mysqlerl),
- mysqlerl_test_lib:drop_db(Config).
+ ok = mysqlerl_test_lib:drop_db(Config).
%%--------------------------------------------------------------------
%% @spec init_per_group(GroupName, Config0) ->