diff options
author | Caio Agiani <agianicaio@gmail.com> | 2022-02-04 04:39:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-04 04:39:59 (GMT) |
commit | 222865daabfa7a8b12ca9a5e9c23b9ce217448f1 (patch) | |
tree | ea7fed2dbf60c9d37b558d40f4e34eee82fac4d4 /Lib/idlelib | |
parent | bd8b05395ad8877f4a065562444e117b1650c022 (diff) | |
download | cpython-222865daabfa7a8b12ca9a5e9c23b9ce217448f1.zip cpython-222865daabfa7a8b12ca9a5e9c23b9ce217448f1.tar.gz cpython-222865daabfa7a8b12ca9a5e9c23b9ce217448f1.tar.bz2 |
bpo-46588: fix typo in test_calltip.py (GH-31119)
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/idle_test/test_calltip.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/idle_test/test_calltip.py b/Lib/idlelib/idle_test/test_calltip.py index b23915c..e8d2bd1 100644 --- a/Lib/idlelib/idle_test/test_calltip.py +++ b/Lib/idlelib/idle_test/test_calltip.py @@ -106,7 +106,7 @@ subclasses to override in order to tweak the default behaviour. If you want to completely replace the main wrapping algorithm, you\'ll probably have to override _wrap_chunks().''') - def test_properly_formated(self): + def test_properly_formatted(self): def foo(s='a'*100): pass |