diff options
author | Peter Andersson <[email protected]> | 2016-03-09 14:11:30 +0100 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2016-03-09 17:12:49 +0100 |
commit | 52cee865fd9e5b4a1371c82075375a92b8f03fbe (patch) | |
tree | 7e1e8391e914eb093eab32fd6645e4d8f89e3101 /lib/common_test/test | |
parent | fb44a4de532ae97b3424078577dee7370078dea0 (diff) | |
download | otp-52cee865fd9e5b4a1371c82075375a92b8f03fbe.tar.gz otp-52cee865fd9e5b4a1371c82075375a92b8f03fbe.tar.bz2 otp-52cee865fd9e5b4a1371c82075375a92b8f03fbe.zip |
Fix minor issues with escaping characters
OTP-13003
Diffstat (limited to 'lib/common_test/test')
-rw-r--r-- | lib/common_test/test/ct_test_support.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/common_test/test/ct_test_support.erl b/lib/common_test/test/ct_test_support.erl index 248ec6c4df..8e7ac9395c 100644 --- a/lib/common_test/test/ct_test_support.erl +++ b/lib/common_test/test/ct_test_support.erl @@ -1228,8 +1228,8 @@ log_events(TC, Events, EvLogDir, Opts) -> file:close(Dev), FullLogFile = join_abs_dirs(proplists:get_value(net_dir, Opts), LogFile), - io:format("Events written to logfile: <a href=\"file://~s\">~s</a>~n", - [FullLogFile,FullLogFile]), + ct:log("Events written to logfile: <a href=\"file://~s\">~s</a>~n", + [FullLogFile,FullLogFile],[no_css]), io:format(user, "Events written to logfile: ~p~n", [LogFile]). log_events1(Evs, Dev, "") -> |