diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-11-10 12:18:03 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-11-10 12:18:03 (GMT) |
commit | ce40e1a081749387aa95c5299694961762745947 (patch) | |
tree | a35e8e0274ba89efcc7e9a9d71d7900e1935d347 /Lib/idlelib | |
parent | ad446d57a929a642644c3a86c7359ce1638077b0 (diff) | |
download | cpython-ce40e1a081749387aa95c5299694961762745947.zip cpython-ce40e1a081749387aa95c5299694961762745947.tar.gz cpython-ce40e1a081749387aa95c5299694961762745947.tar.bz2 |
Fixed IDLE tests after changing re error messages (issue #22578).
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/idle_test/test_searchengine.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/idle_test/test_searchengine.py b/Lib/idlelib/idle_test/test_searchengine.py index 129a5a3..2c10461 100644 --- a/Lib/idlelib/idle_test/test_searchengine.py +++ b/Lib/idlelib/idle_test/test_searchengine.py @@ -178,7 +178,7 @@ class SearchEngineTest(unittest.TestCase): engine.revar.set(1) Equal(engine.getprog(), None) self.assertEqual(Mbox.showerror.message, - 'Error: nothing to repeat\nPattern: +') + 'Error: nothing to repeat at position 0\nPattern: +') def test_report_error(self): showerror = Mbox.showerror |