diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-04-07 14:38:13 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-04-07 14:38:13 +0200 |
commit | 01fe845129658f3c1718849dc1b789570234a674 (patch) | |
tree | d1186251a72010b8d33f5fc705689442277a107d /lib/tools | |
parent | d6dfdeb9fd9ccf985840fa6e5e5e44f6c5fa644b (diff) | |
download | otp-01fe845129658f3c1718849dc1b789570234a674.tar.gz otp-01fe845129658f3c1718849dc1b789570234a674.tar.bz2 otp-01fe845129658f3c1718849dc1b789570234a674.zip |
Replace use of test_server:format/2 with io:format/2
Diffstat (limited to 'lib/tools')
-rw-r--r-- | lib/tools/test/emem_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tools/test/emem_SUITE.erl b/lib/tools/test/emem_SUITE.erl index 2ea028e767..2532c5003e 100644 --- a/lib/tools/test/emem_SUITE.erl +++ b/lib/tools/test/emem_SUITE.erl @@ -528,7 +528,7 @@ run_emem_on_casefile(Config) -> {Ref, ok} -> ok; {Ref, SendError} -> - ?t:format("Send result: ~p~n", [SendError]) + io:format("Send result: ~p~n", [SendError]) end, Res. @@ -641,7 +641,7 @@ get_emem_line(Port, Acc) -> [] -> Data; _ -> lists:flatten([Acc|Data]) end, - ?t:format("~s", [Res]), + io:format("~s", [Res]), Res; {Port, {data, {noeol, Data}}} -> get_emem_line(Port, [Acc|Data]); |