diff options
author | Björn Gustavsson <[email protected]> | 2016-04-18 08:16:21 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-04-18 08:16:21 +0200 |
commit | 55e875d6b507ab51dfc62f63fb40918e9275fbb3 (patch) | |
tree | 3bf54da8cb9a1f8a9efa47f5578090f80619c8aa /lib/debugger | |
parent | 575c1d99d37e541d802c51a62326b6faa3cffbf1 (diff) | |
download | otp-55e875d6b507ab51dfc62f63fb40918e9275fbb3.tar.gz otp-55e875d6b507ab51dfc62f63fb40918e9275fbb3.tar.bz2 otp-55e875d6b507ab51dfc62f63fb40918e9275fbb3.zip |
Eliminate use of test_server:format()
Diffstat (limited to 'lib/debugger')
-rw-r--r-- | lib/debugger/test/int_SUITE.erl | 10 |
1 files changed, 5 insertions, 5 deletions
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"]), |