diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2016-07-10 21:26:24 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2016-07-10 21:26:24 (GMT) |
commit | cd5e388c39563c7bd1122ec3360fd5ed60952668 (patch) | |
tree | 8e6a8f581a37c301c85af39e598995ccd52ec386 /Lib/idlelib | |
parent | 58cb93f02345b9bc525e309be5c02a52a5f04656 (diff) | |
download | cpython-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.py | 2 |
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): |