diff data/fileio/test/CSVStreamWriterTest.h @ 1836:bfdf0f7f9448

Remove debug output
author Chris Cannam
date Wed, 08 Apr 2020 18:41:00 +0100
parents 735b0ccd3f4a
children
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() );
     }
 };