diff options
author | Georg Brandl <georg@python.org> | 2008-02-05 19:07:10 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-02-05 19:07:10 (GMT) |
commit | d86c7e5d9351e1d822e2f0fdc15e765d74837888 (patch) | |
tree | 9c093b5c36a094b5dafc9291812e70e807175831 | |
parent | c2879c70e4d7a406f404810a7b6b82585b99532e (diff) | |
download | cpython-d86c7e5d9351e1d822e2f0fdc15e765d74837888.zip cpython-d86c7e5d9351e1d822e2f0fdc15e765d74837888.tar.gz cpython-d86c7e5d9351e1d822e2f0fdc15e765d74837888.tar.bz2 |
Actually run the test.
-rw-r--r-- | Lib/test/test_wave.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_wave.py b/Lib/test/test_wave.py index 575269a..02f5fae 100644 --- a/Lib/test/test_wave.py +++ b/Lib/test/test_wave.py @@ -38,8 +38,8 @@ class TestWave(unittest.TestCase): 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() |