aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/test
diff options
context:
space:
mode:
authorMicael Karlberg <[email protected]>2011-09-19 14:40:04 +0200
committerMicael Karlberg <[email protected]>2011-09-19 14:40:04 +0200
commit13fcdd5c954ddbb8ac9401d73f8e77423fbd976c (patch)
tree70210749d753f5295e10d976226e591a9c6dae51 /lib/inets/test
parent6eff98016afc83952e9b677a1e9043d82c900599 (diff)
downloadotp-13fcdd5c954ddbb8ac9401d73f8e77423fbd976c.tar.gz
otp-13fcdd5c954ddbb8ac9401d73f8e77423fbd976c.tar.bz2
otp-13fcdd5c954ddbb8ac9401d73f8e77423fbd976c.zip
Use (error_logger) info_msg/2 instead of info_report/2,
as suggested in branch at/error_logger_calls.
Diffstat (limited to 'lib/inets/test')
-rw-r--r--lib/inets/test/httpd_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/inets/test/httpd_SUITE.erl b/lib/inets/test/httpd_SUITE.erl
index c4d4bf969b..1112208295 100644
--- a/lib/inets/test/httpd_SUITE.erl
+++ b/lib/inets/test/httpd_SUITE.erl
@@ -646,7 +646,7 @@ init_per_testcase3(Case, Config) ->
ok ->
"mod_htaccess";
Other ->
- error_logger:info_report("Other: ~p~n", [Other]),
+ error_logger:info_msg("Other: ~p~n", [Other]),
{skip, "SSL does not seem to be supported"}
end;
[X, $s, $s, $l, $_ | Rest] ->
@@ -663,7 +663,7 @@ init_per_testcase3(Case, Config) ->
ok ->
Rest;
Other ->
- error_logger:info_report("Other: ~p~n", [Other]),
+ error_logger:info_msg("Other: ~p~n", [Other]),
{skip, "SSL does not seem to be supported"}
end;
"ipv6_" ++ _ = TestCaseStr ->