diff options
author | Ingela Anderton Andin <[email protected]> | 2016-06-27 15:52:27 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2016-06-27 15:52:27 +0200 |
commit | 63551bf2917dce40c8003d7aec05557be62d08bd (patch) | |
tree | a924e5e25ef3bbfa5480269827d90b794d4ff643 /lib/odbc/test/odbc_test_lib.erl | |
parent | 39d2169bd96cafa13f3cbb5fea8eb30e093a3876 (diff) | |
download | otp-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.erl | 6 |
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. |