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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cd5e388c39563c7bd1122ec3360fd5ed60952668;p=thirdparty%2FPython%2Fcpython.git 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 bb7732cf7ce9..53665cd761af 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):