summaryrefslogtreecommitdiff
path: root/Lib/test/test_pep3151.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_pep3151.py')
-rw-r--r--Lib/test/test_pep3151.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/Lib/test/test_pep3151.py b/Lib/test/test_pep3151.py
index 7d4a5d8446..8d560cd35b 100644
--- a/Lib/test/test_pep3151.py
+++ b/Lib/test/test_pep3151.py
@@ -7,7 +7,6 @@ import unittest
import errno
from errno import EEXIST
-from test import support
class SubOSError(OSError):
pass
@@ -202,8 +201,5 @@ class ExplicitSubclassingTest(unittest.TestCase):
self.assertEqual(str(e), '')
-def test_main():
- support.run_unittest(__name__)
-
-if __name__=="__main__":
- test_main()
+if __name__ == "__main__":
+ unittest.main()