summaryrefslogtreecommitdiff
path: root/Lib/test/test___future__.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test___future__.py')
-rw-r--r--Lib/test/test___future__.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/Lib/test/test___future__.py b/Lib/test/test___future__.py
index 6f73c7fddf..559a1873ad 100644
--- a/Lib/test/test___future__.py
+++ b/Lib/test/test___future__.py
@@ -1,5 +1,4 @@
import unittest
-from test import support
import __future__
GOOD_SERIALS = ("alpha", "beta", "candidate", "final")
@@ -58,8 +57,5 @@ class FutureTest(unittest.TestCase):
".compiler_flag isn't int")
-def test_main():
- support.run_unittest(FutureTest)
-
if __name__ == "__main__":
- test_main()
+ unittest.main()