aboutsummaryrefslogtreecommitdiffstats
path: root/lib/runtime_tools/test
diff options
context:
space:
mode:
authorBjörn-Egil Dahlberg <[email protected]>2016-04-22 16:06:07 +0200
committerBjörn-Egil Dahlberg <[email protected]>2016-04-22 16:06:07 +0200
commit8139ee676303736f8e5849323cd8f4fb6abed549 (patch)
tree587e6a78f9c7750fed97820fb927eab2222ad0de /lib/runtime_tools/test
parentadafa09133e3d9ab473e6b69e1fc62a06637eca8 (diff)
downloadotp-8139ee676303736f8e5849323cd8f4fb6abed549.tar.gz
otp-8139ee676303736f8e5849323cd8f4fb6abed549.tar.bz2
otp-8139ee676303736f8e5849323cd8f4fb6abed549.zip
Replace use of test_server:format/2 with io:format/2
Diffstat (limited to 'lib/runtime_tools/test')
-rw-r--r--lib/runtime_tools/test/erts_alloc_config_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/runtime_tools/test/erts_alloc_config_SUITE.erl b/lib/runtime_tools/test/erts_alloc_config_SUITE.erl
index 3ef88fc300..9fbff50da5 100644
--- a/lib/runtime_tools/test/erts_alloc_config_SUITE.erl
+++ b/lib/runtime_tools/test/erts_alloc_config_SUITE.erl
@@ -142,10 +142,10 @@ make_basic_config(ErtsAllocConfig) ->
%%
display_file(FileName) ->
- ?t:format("filename: ~s~n", [FileName]),
+ io:format("filename: ~s~n", [FileName]),
{ok, Bin} = file:read_file(FileName),
io:format("~s", [binary_to_list(Bin)]),
- ?t:format("eof: ~s~n", [FileName]),
+ io:format("eof: ~s~n", [FileName]),
ok.
mk_name(Config) when is_list(Config) ->