From 2ef736f001e567a5ea6273b53cf5373449d1ed7b Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 15 Apr 2013 02:12:46 -0500 Subject: [PATCH] tests/test_aubio_temporal.py: test results serialization --- tests/test_aubio_temporal.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_aubio_temporal.py b/tests/test_aubio_temporal.py index 12820e6..423f75b 100755 --- a/tests/test_aubio_temporal.py +++ b/tests/test_aubio_temporal.py @@ -22,9 +22,9 @@ class TestAubioTemporal(TestCase): (decoder | self.analyzer).run() results = self.analyzer.results() #print results - #print results.to_yaml() - #print results.to_json() - #print results.to_xml() + results.to_yaml() + results.to_json() + results.to_xml() if __name__ == '__main__': unittest.main(testRunner=TestRunner()) -- 2.39.5