aboutsummaryrefslogtreecommitdiffstats
path: root/lib/odbc/test/odbc_test_lib.erl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2016-06-27 15:52:27 +0200
committerIngela Anderton Andin <[email protected]>2016-06-27 15:52:27 +0200
commit63551bf2917dce40c8003d7aec05557be62d08bd (patch)
treea924e5e25ef3bbfa5480269827d90b794d4ff643 /lib/odbc/test/odbc_test_lib.erl
parent39d2169bd96cafa13f3cbb5fea8eb30e093a3876 (diff)
downloadotp-63551bf2917dce40c8003d7aec05557be62d08bd.tar.gz
otp-63551bf2917dce40c8003d7aec05557be62d08bd.tar.bz2
otp-63551bf2917dce40c8003d7aec05557be62d08bd.zip
odbc: Replace test_server with ct eqvivalents
Diffstat (limited to 'lib/odbc/test/odbc_test_lib.erl')
-rw-r--r--lib/odbc/test/odbc_test_lib.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/odbc/test/odbc_test_lib.erl b/lib/odbc/test/odbc_test_lib.erl
index 37c2249303..cf82d4d32a 100644
--- a/lib/odbc/test/odbc_test_lib.erl
+++ b/lib/odbc/test/odbc_test_lib.erl
@@ -61,13 +61,13 @@ odbc_check() ->
end.
check_row_count(Count, Count) ->
- test_server:format("Correct row count Count: ~p~n", [Count]),
+ ct:pal("Correct row count Count: ~p~n", [Count]),
true;
check_row_count(_, undefined) ->
- test_server:format("Undefined row count ~n", []),
+ ct:pal("Undefined row count ~n", []),
true;
check_row_count(Expected, Count) ->
- test_server:format("Incorrect row count Expected ~p Got ~p~n",
+ ct:pal("Incorrect row count Expected ~p Got ~p~n",
[Expected, Count]),
false.