mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 21:36:11 +01:00
Different approach to proper colouring of filters
This commit is contained in:
parent
6badd7d9ed
commit
95a2e54702
@ -680,9 +680,8 @@ void ConsoleReporter::printSummaryDivider() {
|
|||||||
|
|
||||||
void ConsoleReporter::printTestFilters() {
|
void ConsoleReporter::printTestFilters() {
|
||||||
if (m_config->testSpec().hasFilters()) {
|
if (m_config->testSpec().hasFilters()) {
|
||||||
stream << Colour(Colour::BrightYellow)
|
Colour guard(Colour::BrightYellow);
|
||||||
<< "Filters: " << serializeFilters(m_config->getTestsOrTags())
|
stream << "Filters: " << serializeFilters(m_config->getTestsOrTags()) << '\n';
|
||||||
<< Colour(Colour::None) << '\n';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user