From: Paul Brossier Date: Thu, 7 Mar 2013 21:50:03 +0000 (-0500) Subject: python/tests/test_sink.py: trigger sink bug X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=db1eab722cb6b0858bb2ba99c573fbb4b859dc9f;p=aubio.git python/tests/test_sink.py: trigger sink bug --- diff --git a/python/tests/test_sink.py b/python/tests/test_sink.py index 21723ded..f0104d11 100755 --- a/python/tests/test_sink.py +++ b/python/tests/test_sink.py @@ -22,7 +22,7 @@ class aubio_sink_test_case(TestCase): total_frames = 0 while True: vec, read = f() - #print g(vec, read) + g(vec, read) total_frames += read if read < f.hop_size: break print "read", "%.2fs" % (total_frames / float(f.samplerate) ),