mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-04 05:59:32 +01:00 
			
		
		
		
	Different approach to proper colouring of filters
This commit is contained in:
		@@ -681,9 +681,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';
 | 
					 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user