[Python-checkins] bpo-46588: fix typo in test_calltip.py (GH-31119)

terryjreedy webhook-mailer at python.org
Thu Feb 3 23:40:03 EST 2022


https://github.com/python/cpython/commit/222865daabfa7a8b12ca9a5e9c23b9ce217448f1
commit: 222865daabfa7a8b12ca9a5e9c23b9ce217448f1
branch: main
author: Caio Agiani <agianicaio at gmail.com>
committer: terryjreedy <tjreedy at udel.edu>
date: 2022-02-03T23:39:59-05:00
summary:

bpo-46588: fix typo in test_calltip.py  (GH-31119)

files:
M Lib/idlelib/idle_test/test_calltip.py

diff --git a/Lib/idlelib/idle_test/test_calltip.py b/Lib/idlelib/idle_test/test_calltip.py
index b23915c5ab784..e8d2bd17cb681 100644
--- a/Lib/idlelib/idle_test/test_calltip.py
+++ b/Lib/idlelib/idle_test/test_calltip.py
@@ -106,7 +106,7 @@ def test_signature_wrap(self):
 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



More information about the Python-checkins mailing list