summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2016-07-10 21:26:24 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2016-07-10 21:26:24 (GMT)
commitcd5e388c39563c7bd1122ec3360fd5ed60952668 (patch)
tree8e6a8f581a37c301c85af39e598995ccd52ec386 /Lib/idlelib
parent58cb93f02345b9bc525e309be5c02a52a5f04656 (diff)
downloadcpython-cd5e388c39563c7bd1122ec3360fd5ed60952668.zip
cpython-cd5e388c39563c7bd1122ec3360fd5ed60952668.tar.gz
cpython-cd5e388c39563c7bd1122ec3360fd5ed60952668.tar.bz2
Issue #27173: Fix error in test_config that caused test_idle to fail.
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/idle_test/test_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/idle_test/test_config.py b/Lib/idlelib/idle_test/test_config.py
index bb7732c..53665cd 100644
--- a/Lib/idlelib/idle_test/test_config.py
+++ b/Lib/idlelib/idle_test/test_config.py
@@ -24,7 +24,7 @@ def setUpModule():
idleConf.userCfg = testcfg
def tearDownModule():
- idleConf.userCfg = testcfg
+ idleConf.userCfg = usercfg
class CurrentColorKeysTest(unittest.TestCase):