From c048f62d832930ed673001a411adfc8576bcfe48 Mon Sep 17 00:00:00 2001 From: ItsBasi <5033630+ItsBasi@users.noreply.github.com> Date: Mon, 17 Jun 2024 16:05:15 +0200 Subject: [PATCH] Add missing newline to print_console_summary 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 --- include/boost/ut.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/ut.hpp b/include/boost/ut.hpp index 490ff612..18355ba6 100644 --- a/include/boost/ut.hpp +++ b/include/boost/ut.hpp @@ -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) << " | "