aboutsummaryrefslogtreecommitdiffstats
path: root/test/mysqlerl_readquery_SUITE.erl
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2012-02-09 23:18:15 -0500
committerBrian Cully <bjc@kublai.com>2012-02-09 23:18:15 -0500
commitbf05c0332848fa0598be132a5151cfb151288958 (patch)
tree1aa617eae53bee002a36838040d4abb05ec9295a /test/mysqlerl_readquery_SUITE.erl
parentc21f79c9415c91946c83f5372907e6441d085986 (diff)
downloadmysqlerl-bf05c0332848fa0598be132a5151cfb151288958.tar.gz
mysqlerl-bf05c0332848fa0598be132a5151cfb151288958.zip
Return ok from db/table creation routines, even though it's bogus, just so we can compare it.
Diffstat (limited to 'test/mysqlerl_readquery_SUITE.erl')
-rw-r--r--test/mysqlerl_readquery_SUITE.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/mysqlerl_readquery_SUITE.erl b/test/mysqlerl_readquery_SUITE.erl
index 1276a71..cf57a0c 100644
--- a/test/mysqlerl_readquery_SUITE.erl
+++ b/test/mysqlerl_readquery_SUITE.erl
@@ -32,8 +32,8 @@ suite() ->
%% @end
%%--------------------------------------------------------------------
init_per_suite(Config) ->
- mysqlerl_test_lib:create_db(Config),
- mysqlerl_test_lib:create_table(Config),
+ ok = mysqlerl_test_lib:create_db(Config),
+ ok = mysqlerl_test_lib:create_table(Config),
ok = application:start(mysqlerl),
Config.
@@ -44,7 +44,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) ->