mirror of https://github.com/python/cpython
Actually run the test.
This commit is contained in:
parent
c2879c70e4
commit
d86c7e5d93
|
@ -38,8 +38,8 @@ class TestWave(unittest.TestCase):
|
||||||
self.assertEqual(nframes, self.f.getnframes())
|
self.assertEqual(nframes, self.f.getnframes())
|
||||||
self.assertEqual(self.f.readframes(nframes), output)
|
self.assertEqual(self.f.readframes(nframes), output)
|
||||||
|
|
||||||
def main():
|
def test_main():
|
||||||
run_unittest(TestWave)
|
run_unittest(TestWave)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
test_main()
|
||||||
|
|
Loading…
Reference in New Issue