aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src/ct_framework.erl
diff options
context:
space:
mode:
authorPeter Andersson <[email protected]>2012-08-23 15:52:21 +0200
committerPeter Andersson <[email protected]>2012-08-23 15:52:21 +0200
commit14943cd6636e7abdae0e621a6dcb352d9354fcdf (patch)
tree5272e35e8ed8e9ff047129d2ee197d50426ee17e /lib/common_test/src/ct_framework.erl
parented07da298f5d10523cbfa76e332d43b36c3e4888 (diff)
parentd961f2d397584e2fa8c6da4b2d6fa495803a7065 (diff)
downloadotp-14943cd6636e7abdae0e621a6dcb352d9354fcdf.tar.gz
otp-14943cd6636e7abdae0e621a6dcb352d9354fcdf.tar.bz2
otp-14943cd6636e7abdae0e621a6dcb352d9354fcdf.zip
Merge branch 'maint'
Diffstat (limited to 'lib/common_test/src/ct_framework.erl')
-rw-r--r--lib/common_test/src/ct_framework.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/common_test/src/ct_framework.erl b/lib/common_test/src/ct_framework.erl
index e53383e038..19a26872ee 100644
--- a/lib/common_test/src/ct_framework.erl
+++ b/lib/common_test/src/ct_framework.erl
@@ -27,7 +27,7 @@
-export([init_tc/3, end_tc/3, end_tc/4, get_suite/2, get_all_cases/1]).
-export([report/2, warn/1, error_notification/4]).
--export([get_logopts/0, format_comment/1, get_html_wrapper/3]).
+-export([get_logopts/0, format_comment/1, get_html_wrapper/4]).
-export([error_in_suite/1, init_per_suite/1, end_per_suite/1,
init_per_group/2, end_per_group/2]).
@@ -1657,5 +1657,5 @@ format_comment(Comment) ->
%%%-----------------------------------------------------------------
%%% @spec get_html_wrapper(TestName, PrintLabel, Cwd) -> Header
-get_html_wrapper(TestName, PrintLabel, Cwd) ->
- ct_logs:get_ts_html_wrapper(TestName, PrintLabel, Cwd).
+get_html_wrapper(TestName, PrintLabel, Cwd, TableCols) ->
+ ct_logs:get_ts_html_wrapper(TestName, PrintLabel, Cwd, TableCols).