this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fixes "0 tests" result not showing in yellow.

While writing our own test suite, we found that there is a bug in the
`progress_ffi.erl` code that will print the result in the "normal" color
instead of the wanted "yellow". This is because the first arguments to
`print_colored()` are swapped.

authored by

Hans Raaf and committed by
Louis Pilfold
cd8a92d8 b4e43a4d

+1 -1
+1 -1
src/gleeunit_progress.erl
··· 420 420 sync_end(Result). 421 421 422 422 print_results(Color, 0, _, _, _, State) -> 423 - print_colored(Color, "0 tests\n", State); 423 + print_colored("0 tests\n", Color, State); 424 424 print_results(Color, Total, Fail, Skip, Cancel, State) -> 425 425 SkipText = format_optional_result(Skip, "skipped"), 426 426 CancelText = format_optional_result(Cancel, "cancelled"),