[Python-checkins] r60603 - python/trunk/Lib/test/test_wave.py

georg.brandl python-checkins at python.org
Tue Feb 5 20:07:10 CET 2008


Author: georg.brandl
Date: Tue Feb  5 20:07:10 2008
New Revision: 60603

Modified:
   python/trunk/Lib/test/test_wave.py
Log:
Actually run the test.


Modified: python/trunk/Lib/test/test_wave.py
==============================================================================
--- python/trunk/Lib/test/test_wave.py	(original)
+++ python/trunk/Lib/test/test_wave.py	Tue Feb  5 20:07:10 2008
@@ -38,8 +38,8 @@
         self.assertEqual(nframes, self.f.getnframes())
         self.assertEqual(self.f.readframes(nframes), output)
 
-def main():
+def test_main():
     run_unittest(TestWave)
 
 if __name__ == '__main__':
-    main()
+    test_main()


More information about the Python-checkins mailing list