Skip to content

Commit

Permalink
Fix typo in output check
Browse files Browse the repository at this point in the history
  • Loading branch information
horenmar committed Aug 3, 2021
1 parent 793c46b commit 00d022a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/catch2/reporters/catch_reporter_listening.cpp
Expand Up @@ -123,7 +123,7 @@ namespace Catch {
if ( !testCaseStats.stdOut.empty() ) {
Catch::cout() << testCaseStats.stdOut << std::flush;
}
if ( !testCaseStats.stdOut.empty() ) {
if ( !testCaseStats.stdErr.empty() ) {
Catch::cerr() << testCaseStats.stdErr << std::flush;
}
}
Expand Down

0 comments on commit 00d022a

Please sign in to comment.