From: Terry Jan Reedy Date: Sun, 10 Jul 2016 21:26:24 +0000 (-0400) Subject: Issue #27173: Fix error in test_config that caused test_idle to fail. X-Git-Tag: v3.6.0a3~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cd5e388c39563c7bd1122ec3360fd5ed60952668;p=python Issue #27173: Fix error in test_config that caused test_idle to fail. --- diff --git a/Lib/idlelib/idle_test/test_config.py b/Lib/idlelib/idle_test/test_config.py index bb7732cf7c..53665cd761 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):