Mercurial > hg > svcore
changeset 1836:bfdf0f7f9448
Remove debug output
author | Chris Cannam |
---|---|
date | Wed, 08 Apr 2020 18:41:00 +0100 |
parents | 804dd0c06f0e |
children | 403e961ec6ab |
files | data/fileio/test/CSVStreamWriterTest.h |
diffstat | 1 files changed, 0 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/data/fileio/test/CSVStreamWriterTest.h Mon Apr 06 13:55:44 2020 +0100 +++ b/data/fileio/test/CSVStreamWriterTest.h Wed Apr 08 18:41:00 2020 +0100 @@ -370,10 +370,6 @@ QVERIFY( wroteSparseModel == true ); QVERIFY( oss.str() != std::string() ); - - cerr << oss.str() << endl; - cerr << expectedWithCommaSeparator << endl; - QVERIFY( oss.str() == expectedWithCommaSeparator.toStdString() ); std::ostringstream oss2; @@ -388,10 +384,6 @@ QVERIFY( wroteSparseModel == true ); QVERIFY( oss2.str() != std::string() ); - - cerr << oss2.str() << endl; - cerr << expectedWithSpaceSeparator << endl; - QVERIFY( oss2.str() == expectedWithSpaceSeparator.toStdString() ); } };