summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sets.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_sets.py')
-rw-r--r--Lib/test/test_sets.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_sets.py b/Lib/test/test_sets.py
index ff834e0..85e4a22 100644
--- a/Lib/test/test_sets.py
+++ b/Lib/test/test_sets.py
@@ -819,7 +819,8 @@ Set(['Jack', 'Jane', 'Janice', 'John', 'Marvin', 'Sam', 'Zack'])
__test__ = {'libreftest' : libreftest}
def test_main(verbose=None):
- import test_sets, doctest
+ import doctest
+ from test import test_sets
test_support.run_unittest(
TestSetOfSets,
TestExceptionPropagation,