File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -48,9 +48,9 @@ class TestResultPrinter {
4848 static TestResultPrinter printer (64 );
4949 return printer;
5050 }
51-
51+
5252 void process (std::string const & what, bool passed) {
53- std::cout << std::left << std::setw (m_width) << what << " : "
53+ std::cout << std::left << std::setw (m_width) << what << " : "
5454 << (passed ? " PASS" : " ** FAIL **" ) << ' \n ' ;
5555 }
5656private:
Original file line number Diff line number Diff line change @@ -59,9 +59,9 @@ class TestResultPrinter {
5959 static TestResultPrinter printer (64 );
6060 return printer;
6161 }
62-
62+
6363 void operator ()(std::string const & what, bool passed) {
64- std::cout << std::left << std::setw (m_width) << what << " : "
64+ std::cout << std::left << std::setw (m_width) << what << " : "
6565 << (passed ? " PASS" : " ** FAIL **" ) << ' \n ' ;
6666 }
6767private:
You can’t perform that action at this time.
0 commit comments