mirror of
https://github.com/catchorg/Catch2.git
synced 2025-08-01 12:55:40 +02:00
Fixed inconsistency in reporting of _FALSE (negated) expressions
This commit is contained in:
@@ -191,11 +191,7 @@ namespace Catch {
|
||||
if( result.hasExpression() ) {
|
||||
Colour colourGuard( Colour::OriginalExpression );
|
||||
stream << " ";
|
||||
if( !result.getTestMacroName().empty() )
|
||||
stream << result.getTestMacroName() << "( ";
|
||||
stream << result.getExpression();
|
||||
if( !result.getTestMacroName().empty() )
|
||||
stream << " )";
|
||||
stream << result.getExpressionInMacro();
|
||||
stream << "\n";
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user