diff options
author | Björn Gustavsson <[email protected]> | 2016-02-25 15:40:16 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-03-09 12:08:36 +0100 |
commit | 511ff3279897028cabace38388d475eb4e4c56ec (patch) | |
tree | 43be20aad11a7d277d23499294415886443b6483 /lib/stdlib/test/erl_lint_SUITE.erl | |
parent | ec35c6439d3707801c7527dd2ea01ef0aa0421ed (diff) | |
download | otp-511ff3279897028cabace38388d475eb4e4c56ec.tar.gz otp-511ff3279897028cabace38388d475eb4e4c56ec.tar.bz2 otp-511ff3279897028cabace38388d475eb4e4c56ec.zip |
Replace use of test_server:format/2 with io:format/2
There is no practial difference.
Diffstat (limited to 'lib/stdlib/test/erl_lint_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/erl_lint_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/test/erl_lint_SUITE.erl b/lib/stdlib/test/erl_lint_SUITE.erl index f20b57672e..6d03e8e53f 100644 --- a/lib/stdlib/test/erl_lint_SUITE.erl +++ b/lib/stdlib/test/erl_lint_SUITE.erl @@ -3467,7 +3467,7 @@ format_level(Level, Count, Config) -> Count -> ok; Other -> - ?t:format("Expected ~w warning(s); got ~w", [Count,Other]), + io:format("Expected ~w warning(s); got ~w", [Count,Other]), fail() end, ok. @@ -3913,7 +3913,7 @@ run(Config, Tests) -> E -> BadL; Bad -> - ?t:format("~nTest ~p failed. Expected~n ~p~n" + io:format("~nTest ~p failed. Expected~n ~p~n" "but got~n ~p~n", [N, E, Bad]), fail() end |