summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_future3.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_future3.py')
-rw-r--r--Lib/test/test_future3.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_future3.py b/Lib/test/test_future3.py
index ed23567..b1552a5 100644
--- a/Lib/test/test_future3.py
+++ b/Lib/test/test_future3.py
@@ -2,7 +2,7 @@ from __future__ import nested_scopes
from __future__ import division
import unittest
-from test import test_support
+from test import support
x = 2
def nester():
@@ -24,7 +24,7 @@ class TestFuture(unittest.TestCase):
self.assertEqual(nester(), 3)
def test_main():
- test_support.run_unittest(TestFuture)
+ support.run_unittest(TestFuture)
if __name__ == "__main__":
test_main()