From 55e875d6b507ab51dfc62f63fb40918e9275fbb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Gustavsson?= Date: Mon, 18 Apr 2016 08:16:21 +0200 Subject: Eliminate use of test_server:format() --- lib/debugger/test/int_SUITE.erl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/debugger/test/int_SUITE.erl b/lib/debugger/test/int_SUITE.erl index 9d9211542c..4aae08810b 100644 --- a/lib/debugger/test/int_SUITE.erl +++ b/lib/debugger/test/int_SUITE.erl @@ -126,10 +126,10 @@ append_1(suite) -> append_1(doc) -> []; append_1(Config) when is_list(Config) -> - ?line test_server:format("In append_1~n"), - ?line test_server:format("code:which(lists1)=~p~n", + io:format("In append_1~n"), + io:format("code:which(lists1)=~p~n", [code:which(lists1)]), - ?line test_server:format("lists1:append([a],[b])=~p~n", + io:format("lists1:append([a],[b])=~p~n", [spawn_eval(lists1,append,[[a],[b]])]), ?line "abcdef"=spawn_eval(lists1,append,[["abc","def"]]), @@ -143,8 +143,8 @@ append_2(suite) -> append_2(doc) -> []; append_2(Config) when is_list(Config) -> - ?line test_server:format("In append_2~n"), - ?line test_server:format("code:which(lists1)=~p~n", + io:format("In append_2~n"), + io:format("code:which(lists1)=~p~n", [code:which(lists1)]), ?line "abcdef"=spawn_eval(lists1,append,["abc", "def"]), -- cgit v1.2.3