diff options
author | Björn Gustavsson <[email protected]> | 2012-10-30 17:05:10 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-10-31 14:31:15 +0100 |
commit | bc252da80bdae41fa8aeee813da3365a651b801f (patch) | |
tree | db3f8fe6dcc19a72f1f52ba698da48d5c09e5c5e /lib/common_test | |
parent | 0a42a8be1604a29bfefd62e54a2e8453e237fd73 (diff) | |
download | otp-bc252da80bdae41fa8aeee813da3365a651b801f.tar.gz otp-bc252da80bdae41fa8aeee813da3365a651b801f.tar.bz2 otp-bc252da80bdae41fa8aeee813da3365a651b801f.zip |
Fix writing of configuration information to ct_master_log.html
Because of a forgotten "Fd", configuration information intended for
ct_master_log.html ended up being written to standard output.
Diffstat (limited to 'lib/common_test')
-rw-r--r-- | lib/common_test/src/ct_master_logs.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common_test/src/ct_master_logs.erl b/lib/common_test/src/ct_master_logs.erl index d76288feef..84f175c0a9 100644 --- a/lib/common_test/src/ct_master_logs.erl +++ b/lib/common_test/src/ct_master_logs.erl @@ -204,7 +204,7 @@ open_ct_master_log(Dir) -> {ok,Fd} = file:open(FullName,[write]), io:put_chars(Fd,header("Common Test Master Log", {[],[1,2],[]})), %% maybe add config info here later - io:put_chars(config_table([])), + io:put_chars(Fd,config_table([])), io:put_chars(Fd, "<style>\n" "div.ct_internal { background:lightgrey; color:black }\n" |