Skip to content

Commit

Permalink
Add missing newline to print_console_summary
Browse files Browse the repository at this point in the history
Without the newline, the suit name and "tests" label are not separated.

e.g.

===============================================================================
Suite globaltests:   0 | 1 failed
asserts: 0 | 0 passed | 1 failed
  • Loading branch information
ItsBasi authored Jun 17, 2024
1 parent 34e5691 commit 0954030
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/ut.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1890,7 +1890,7 @@ class reporter_junit {
err_stream
<< "\n========================================================"
"=======================\n"
<< "Suite " << suite_name //
<< "Suite " << suite_name << '\n' //
<< "tests: " << (suite_result.n_tests) << " | " << color_.fail
<< suite_result.fails << " failed" << color_.none << '\n'
<< "asserts: " << (suite_result.assertions) << " | "
Expand Down

0 comments on commit 0954030

Please sign in to comment.