diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2015-04-13 20:00:43 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2015-04-13 20:00:43 (GMT) |
commit | 38c707e7e0322f9139bb51ad73ede1e3b46985ef (patch) | |
tree | c8eb37916c1573602b74aa5b8ded72f47e61ccc6 /Lib/test/test_openpty.py | |
parent | 4b761bf79a967bcb4e0079a99183bd06ba45b107 (diff) | |
download | cpython-38c707e7e0322f9139bb51ad73ede1e3b46985ef.zip cpython-38c707e7e0322f9139bb51ad73ede1e3b46985ef.tar.gz cpython-38c707e7e0322f9139bb51ad73ede1e3b46985ef.tar.bz2 |
Issue #21741: Update 147 test modules to use test discovery.
I have compared output between pre- and post-patch runs of these tests
to make sure there's nothing missing and nothing broken, on both
Windows and Linux. The only differences I found were actually tests
that were previously *not* run.
Diffstat (limited to 'Lib/test/test_openpty.py')
-rw-r--r-- | Lib/test/test_openpty.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Lib/test/test_openpty.py b/Lib/test/test_openpty.py index 4785107..3f46a60 100644 --- a/Lib/test/test_openpty.py +++ b/Lib/test/test_openpty.py @@ -1,7 +1,6 @@ # Test to see if openpty works. (But don't worry if it isn't available.) import os, unittest -from test.support import run_unittest if not hasattr(os, "openpty"): raise unittest.SkipTest("os.openpty() not available.") @@ -18,8 +17,5 @@ class OpenptyTest(unittest.TestCase): os.write(slave, b'Ping!') self.assertEqual(os.read(master, 1024), b'Ping!') -def test_main(): - run_unittest(OpenptyTest) - if __name__ == '__main__': - test_main() + unittest.main() |