From bf05c0332848fa0598be132a5151cfb151288958 Mon Sep 17 00:00:00 2001 From: Brian Cully Date: Thu, 9 Feb 2012 23:18:15 -0500 Subject: Return ok from db/table creation routines, even though it's bogus, just so we can compare it. --- test/mysqlerl_connect_SUITE.erl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/mysqlerl_connect_SUITE.erl') 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) -> -- cgit v1.2.3