aboutsummaryrefslogtreecommitdiffstats
path: root/lib/xmerl
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2018-09-14 10:15:32 +0200
committerHans Bolinder <[email protected]>2019-01-17 09:51:34 +0100
commitf204804473fb73dd98158e6d5823db3ea0894cf7 (patch)
tree44ac0140287ece215ec7ecf78d6b298d27d60298 /lib/xmerl
parent205ef4a2ee3dee26196a5a212e89b6b4839639cc (diff)
downloadotp-f204804473fb73dd98158e6d5823db3ea0894cf7.tar.gz
otp-f204804473fb73dd98158e6d5823db3ea0894cf7.tar.bz2
otp-f204804473fb73dd98158e6d5823db3ea0894cf7.zip
xmerl: Adjust a call to io:format()
Diffstat (limited to 'lib/xmerl')
-rw-r--r--lib/xmerl/test/xmerl_xsd_lib.erl7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/xmerl/test/xmerl_xsd_lib.erl b/lib/xmerl/test/xmerl_xsd_lib.erl
index 6006cf500f..39300cd6cb 100644
--- a/lib/xmerl/test/xmerl_xsd_lib.erl
+++ b/lib/xmerl/test/xmerl_xsd_lib.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2006-2016. All Rights Reserved.
+%% Copyright Ericsson AB 2006-2019. All Rights Reserved.
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
@@ -94,8 +94,9 @@ return_results2({NewFail, NewSuccess, NewMal, NewNotMal}, NumSucc, SkippedN, Tot
_ -> io_lib:format("These ~p skipped tests were malicious, but succeeds now: ~p~n",
[length(NewNotMal), NewNotMal])
end,
- ct:comment(io_lib:format("~p successful tests, ~p skipped tests of totally ~p test cases. ~n" ++
- NFComm ++ NSComm ++ NMComm ++ NNMComm, [NumSucc, SkippedN, TotN])),
+ ct:comment(io_lib:format("~p successful tests, ~p skipped tests of totally ~p test cases. ~n~ts",
+ [NumSucc, SkippedN, TotN,
+ NFComm ++ NSComm ++ NMComm ++ NNMComm])),
[] = NewFail.
%% return_results2(Diff,{STErrs,STOther},{ITErrs,ITOther},TotN) ->