diff options
| author | Terry Jan Reedy <tjreedy@udel.edu> | 2016-07-10 17:26:24 -0400 |
|---|---|---|
| committer | Terry Jan Reedy <tjreedy@udel.edu> | 2016-07-10 17:26:24 -0400 |
| commit | cd5e388c39563c7bd1122ec3360fd5ed60952668 (patch) | |
| tree | 8e6a8f581a37c301c85af39e598995ccd52ec386 /Lib/idlelib/idle_test | |
| parent | 58cb93f02345b9bc525e309be5c02a52a5f04656 (diff) | |
| download | cpython-git-cd5e388c39563c7bd1122ec3360fd5ed60952668.tar.gz | |
Issue #27173: Fix error in test_config that caused test_idle to fail.
Diffstat (limited to 'Lib/idlelib/idle_test')
| -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 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): |
