From cd5e388c39563c7bd1122ec3360fd5ed60952668 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Sun, 10 Jul 2016 17:26:24 -0400 Subject: Issue #27173: Fix error in test_config that caused test_idle to fail. --- Lib/idlelib/idle_test/test_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- cgit v0.12