From fa7a8389fe4dda9bf26165a2ce3eceee9a7abcec Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 14 Dec 2013 12:55:49 -0500 Subject: [PATCH] Unit Tests - Corrected output for skipped, pass and fail tests. --- test/test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test.cpp b/test/test.cpp index 82bcf73e5..8aab28721 100644 --- a/test/test.cpp +++ b/test/test.cpp @@ -403,7 +403,7 @@ void UnitTest::pass (const std::string& text) ++_passed; std::cout << "ok " << _counter - << " " + << " - " << text << "\n"; } @@ -415,7 +415,7 @@ void UnitTest::fail (const std::string& text) ++_failed; std::cout << "not ok " << _counter - << " " + << " - " << text << "\n"; } @@ -427,7 +427,7 @@ void UnitTest::skip (const std::string& text) ++_skipped; std::cout << "skip " << _counter - << " " + << " - " << text << "\n"; }