aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src
diff options
context:
space:
mode:
authorPeter Andersson <[email protected]>2013-09-02 11:24:10 +0200
committerPeter Andersson <[email protected]>2013-09-02 11:24:10 +0200
commit6144fd582667642fdacba8018eef464a780aba17 (patch)
treebb0a13e0428da4c280cbd11ff42751ff7250e193 /lib/common_test/src
parent7f47c270335e713d6540387bb939fdbd1577f3db (diff)
parentfa1e0c642845cf7e72f0eef0af70baf5b87a0e3c (diff)
downloadotp-6144fd582667642fdacba8018eef464a780aba17.tar.gz
otp-6144fd582667642fdacba8018eef464a780aba17.tar.bz2
otp-6144fd582667642fdacba8018eef464a780aba17.zip
Merge branch 'maint'
Diffstat (limited to 'lib/common_test/src')
-rw-r--r--lib/common_test/src/cth_log_redirect.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/common_test/src/cth_log_redirect.erl b/lib/common_test/src/cth_log_redirect.erl
index 958b7a94c7..83fc879967 100644
--- a/lib/common_test/src/cth_log_redirect.erl
+++ b/lib/common_test/src/cth_log_redirect.erl
@@ -46,7 +46,7 @@ post_init_per_group(Group, Config, Result, tc_log_async) ->
case lists:member(parallel,proplists:get_value(
tc_group_properties,Config,[])) of
true ->
- {Result, {set_log_func(ct_log),Group}};
+ {Result, {set_log_func(tc_log),Group}};
false ->
{Result, tc_log_async}
end;
@@ -59,7 +59,7 @@ post_end_per_testcase(_TC, _Config, Result, State) ->
gen_event:call(error_logger, ?MODULE, flush, 300000),
{Result, State}.
-pre_end_per_group(Group, Config, {ct_log, Group}) ->
+pre_end_per_group(Group, Config, {tc_log, Group}) ->
{Config, set_log_func(tc_log_async)};
pre_end_per_group(_Group, Config, State) ->
{Config, State}.