From a697193623dc77f8edfc56383a6a5f75529a0ab2 Mon Sep 17 00:00:00 2001 From: jez <> Date: Sat, 3 Nov 2007 01:13:04 +0000 Subject: [PATCH] no newline after output flags --- tests/CppUnit/textui/TextTestResult.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/CppUnit/textui/TextTestResult.cpp b/tests/CppUnit/textui/TextTestResult.cpp index 99fe5d00..a63c4a73 100644 --- a/tests/CppUnit/textui/TextTestResult.cpp +++ b/tests/CppUnit/textui/TextTestResult.cpp @@ -13,22 +13,21 @@ void TextTestResult::addError (Test *test, CppUnitException *e) { TestResult::addError (test, e); if(verbose_) - cerr << "E" << endl; - + cerr << "E"; } void TextTestResult::addFailure (Test *test, CppUnitException *e) { TestResult::addFailure (test, e); if(verbose_) - cerr << "F" << endl; + cerr << "F"; } void TextTestResult::addSkip (Test *test, CppUnitException *e) { TestResult::addSkip (test, e); if(verbose_) - cerr << "S" << endl; + cerr << "S"; } void TextTestResult::startTest (Test *test)