Skip to content

Commit

Permalink
Fixed minor warning from catch3 PR (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
snej authored Oct 10, 2024
1 parent 956e059 commit 1e09fd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vendor/catch/CaseListReporter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -487,8 +487,8 @@ namespace fleece_Catch {

if (double dur = _sectionStats.durationInSeconds; shouldShowDuration(*m_config, dur)) {
m_stream << m_colour->guardColour(Colour::Warning)
<< "[[ "//<< _sectionStats.sectionInfo.name << " took "
<< getFormattedDuration(_sectionStats.durationInSeconds) << " sec]]\n" << std::flush;
<< "[[ " << getFormattedDuration(_sectionStats.durationInSeconds) << " sec]]\n"
<< std::flush;
}
if (m_headerPrinted) {
m_headerPrinted = false;
Expand Down

0 comments on commit 1e09fd5

Please sign in to comment.