diff options
| author | Steve M. Robbins <smr@sumost.ca> | 2001-05-29 03:14:06 +0000 |
|---|---|---|
| committer | Steve M. Robbins <smr@sumost.ca> | 2001-05-29 03:14:06 +0000 |
| commit | d72591aa733dfb163c40729348dfb61cbf03bf9c (patch) | |
| tree | 9a209eae233b1a093c91bd6f212a9ff5842285e3 /src/cppunit/TextTestResult.cpp | |
| parent | b408d39128a88c1e60828980190bbe1cbe21a2e5 (diff) | |
| download | cppunit-d72591aa733dfb163c40729348dfb61cbf03bf9c.tar.gz | |
Fix output of TextTestResult
Diffstat (limited to 'src/cppunit/TextTestResult.cpp')
| -rw-r--r-- | src/cppunit/TextTestResult.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/cppunit/TextTestResult.cpp b/src/cppunit/TextTestResult.cpp index a8efbb3..cbd226f 100644 --- a/src/cppunit/TextTestResult.cpp +++ b/src/cppunit/TextTestResult.cpp @@ -16,16 +16,14 @@ void TextTestResult::addError (Test *test, Exception *e) { TestResult::addError (test, e); - std::cerr << "E" << std::endl; - + std::cerr << "E"; } void TextTestResult::addFailure (Test *test, Exception *e) { TestResult::addFailure (test, e); - std::cerr << "F" << std::endl; - + std::cerr << "F"; } void @@ -33,7 +31,6 @@ TextTestResult::startTest (Test *test) { TestResult::startTest (test); std::cerr << "."; - } |
