From 99aca4684c41cf8e42655df51adc3c64bd374ce8 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Sun, 30 Aug 2026 23:11:16 +0200 Subject: [PATCH] Fix wording for failure in context It should be "*the* following context" --- include/boost/test/impl/compiler_log_formatter.ipp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/test/impl/compiler_log_formatter.ipp b/include/boost/test/impl/compiler_log_formatter.ipp index 4c99a9338d..c59ccfa405 100644 --- a/include/boost/test/impl/compiler_log_formatter.ipp +++ b/include/boost/test/impl/compiler_log_formatter.ipp @@ -259,7 +259,7 @@ compiler_log_formatter::entry_context_start( std::ostream& output, log_level l ) output << "\n[context:"; } else { - output << (l == log_successful_tests ? "\nAssertion" : "\nFailure" ) << " occurred in a following context:"; + output << (l == log_successful_tests ? "\nAssertion" : "\nFailure" ) << " occurred in the following context:"; } }