mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 13:26:10 +01:00
Fix refactoring
This commit is contained in:
parent
8a1b3b81cb
commit
9b884d8107
@ -295,7 +295,7 @@ namespace Catch {
|
||||
}
|
||||
}
|
||||
|
||||
if( !result.hasMessage() )
|
||||
if( result.hasMessage() )
|
||||
rss << result.getMessage() << '\n';
|
||||
for( auto const& msg : stats.infoMessages )
|
||||
if( msg.type == ResultWas::Info )
|
||||
|
@ -147,7 +147,7 @@ namespace Catch {
|
||||
}
|
||||
}
|
||||
|
||||
if (!result.hasMessage())
|
||||
if (result.hasMessage())
|
||||
textRss << result.getMessage() << '\n';
|
||||
|
||||
for (auto const& msg : stats.infoMessages)
|
||||
|
Loading…
Reference in New Issue
Block a user