string fix up
[ardour.git] / libs / ardour / test / tempo_test.cc
index 845116470ef8498275baa47bcaff8ca117621b67..fa9ad0a520a4652e154bcf30ca88028e78257a74 100644 (file)
@@ -41,15 +41,6 @@ TempoTest::recomputeMapTest ()
        Meter meterB (3, 4);
        map.add_meter (meterB, BBT_Time (4, 1, 0));
 
-       cout << "\n\n\n";
-       for (list<MetricSection*>::iterator i = map.metrics.begin(); i != map.metrics.end(); ++i) {
-               if (dynamic_cast<TempoSection*> (*i)) {
-                       cout << "\tTempo MS @ " << (*i)->start() << " " << (*i)->frame() << "\n";
-               } else {
-                       cout << "\tMeter MS @ " << (*i)->start() << " " << (*i)->frame() << "\n";
-               }
-       }
-       
        list<MetricSection*>::iterator i = map.metrics.begin();
        CPPUNIT_ASSERT_EQUAL (framepos_t (0), (*i)->frame ());