diff --git a/include/reporters/catch_reporter_tap.hpp b/include/reporters/catch_reporter_tap.hpp index ccc4051b..1bfe4f5e 100644 --- a/include/reporters/catch_reporter_tap.hpp +++ b/include/reporters/catch_reporter_tap.hpp @@ -42,9 +42,9 @@ namespace Catch { bool assertionEnded( AssertionStats const& _assertionStats ) override { ++counter; + stream << "# " << currentTestCaseInfo->name << std::endl; AssertionPrinter printer( stream, _assertionStats, counter ); printer.print(); - stream << " # " << currentTestCaseInfo->name ; stream << std::endl; return true;