Skip to content

Commit

Permalink
ct: Fix format to be a non-deep list
Browse files Browse the repository at this point in the history
  • Loading branch information
garazdawi committed Aug 30, 2024
1 parent 0cbeba5 commit 1d04048
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 1d04048

Please sign in to comment.