Skip to content

Commit

Permalink
Merge branch 'lukas/ct/fix-cte_track-printout-format' into maint
Browse files Browse the repository at this point in the history
* lukas/ct/fix-cte_track-printout-format:
  ct: Fix format to be a non-deep list
  • Loading branch information
garazdawi committed Sep 2, 2024
2 parents ece5ad4 + 1d04048 commit 95e4a20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/common_test/src/cte_track.erl
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,11 @@ handle_event(#event{name = test_done},
print(D,
"# CONF TOTALS ~p ok, ~p failed, ~pU/~pA skipped~n" ++
"# TEST TOTALS ~p ok, ~p failed, ~pU/~pA skipped~n" ++
"# TIME ELAPSED " ++
get_nice_time(get_seconds() - StartTime) ++ "~n",
"# TIME ELAPSED ~s~n",
[GetCount(ok), GetCount(failed), GetCount(skipped),
GetCount(auto_skipped)] ++
[Ok, Failed, UserSkip, AutoSkip]),
[Ok, Failed, UserSkip, AutoSkip,
get_nice_time(get_seconds() - StartTime)]),
print_line(D),
print(D, "~n"),
{ok,State};
Expand Down

0 comments on commit 95e4a20

Please sign in to comment.