Skip to content

Commit

Permalink
CppUnit: flush after writing test name
Browse files Browse the repository at this point in the history
  • Loading branch information
obiltschnig committed Feb 8, 2020
1 parent 137c6ad commit f399062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CppUnit/src/TextTestResult.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ void TextTestResult::addFailure(Test* test, CppUnitException* e)
void TextTestResult::startTest(Test* test)
{
TestResult::startTest(test);
_ostr << "\n" << shortName(test->toString()) << ": ";
_ostr << "\n" << shortName(test->toString()) << ": " << std::flush;
}


Expand Down

0 comments on commit f399062

Please sign in to comment.