summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_userdict.py
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2015-12-05 05:32:23 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2015-12-05 05:32:23 (GMT)
commitac28b796d80f869f39662491446145106960a886 (patch)
tree1877f8c5cd3a304a1890e81034555987fd9afbc1 /Lib/test/test_userdict.py
parent939614c48c3b0b5adeb408294a032118411ab987 (diff)
downloadcpython-ac28b796d80f869f39662491446145106960a886.zip
cpython-ac28b796d80f869f39662491446145106960a886.tar.gz
cpython-ac28b796d80f869f39662491446145106960a886.tar.bz2
Issue #25795: Fix several tests to run independently.
These were broken in 3aec776fc796 when they were converted away from using support.run_unittest(). Oops :) Initial patch by Felippe da Motta Raposo.
Diffstat (limited to 'Lib/test/test_userdict.py')
-rw-r--r--Lib/test/test_userdict.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_userdict.py b/Lib/test/test_userdict.py
index 1288943..8357f8b 100644
--- a/Lib/test/test_userdict.py
+++ b/Lib/test/test_userdict.py
@@ -1,6 +1,7 @@
# Check every path through every method of UserDict
from test import support, mapping_tests
+import unittest
import collections
d0 = {}