diff options
author | Björn Gustavsson <[email protected]> | 2016-02-25 15:40:16 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-02-25 15:53:34 +0100 |
commit | 3d03356f718f64ca0e33b715f306219db86a4b0a (patch) | |
tree | eb9d56f18aaa85a38b09083dc541e1d632a61a1b /lib/compiler/test/warnings_SUITE.erl | |
parent | 117daae14c7779a35659589a842af331fe773d6a (diff) | |
download | otp-3d03356f718f64ca0e33b715f306219db86a4b0a.tar.gz otp-3d03356f718f64ca0e33b715f306219db86a4b0a.tar.bz2 otp-3d03356f718f64ca0e33b715f306219db86a4b0a.zip |
Replace use of test_server:format/2 with io:format/2
There is no practial difference.
Diffstat (limited to 'lib/compiler/test/warnings_SUITE.erl')
-rw-r--r-- | lib/compiler/test/warnings_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/test/warnings_SUITE.erl b/lib/compiler/test/warnings_SUITE.erl index af32ed79fa..0793884587 100644 --- a/lib/compiler/test/warnings_SUITE.erl +++ b/lib/compiler/test/warnings_SUITE.erl @@ -789,7 +789,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 |