From 1e09fd588e4bd349013a19fdd96a9f918efa727f Mon Sep 17 00:00:00 2001 From: Jens Alfke Date: Thu, 10 Oct 2024 11:07:28 -0700 Subject: [PATCH] Fixed minor warning from catch3 PR (#242) --- vendor/catch/CaseListReporter.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vendor/catch/CaseListReporter.cc b/vendor/catch/CaseListReporter.cc index 7cab683e..ef3231c6 100644 --- a/vendor/catch/CaseListReporter.cc +++ b/vendor/catch/CaseListReporter.cc @@ -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;