python/tests: fix most prospect warnings
[aubio.git] / python / tests / test_aubio.py
index 951ade9..cac8397 100755 (executable)
@@ -1,14 +1,14 @@
 #! /usr/bin/env python
 
-from numpy.testing import TestCase, run_module_suite
+from unittest import main
+from numpy.testing import TestCase
 
 class aubiomodule_test_case(TestCase):
 
-  def test_import(self):
-    """ try importing aubio """
-    import aubio 
+    def test_import(self):
+        """ try importing aubio """
+        import aubio
 
 if __name__ == '__main__':
-  from unittest import main
-  main()
+    main()