]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo "involvin" → "involving" (#104166)
authorChristopher Chavez <chrischavez@gmx.us>
Thu, 4 May 2023 13:03:52 +0000 (08:03 -0500)
committerGitHub <noreply@github.com>
Thu, 4 May 2023 13:03:52 +0000 (13:03 +0000)
Lib/test/test_idle.py
Lib/test/test_tix.py

index b94b18a541a7018258d91e0a8b3c00748d882179..90cff9002b75b2f72f2fb7b7068610655db05fec 100644 (file)
@@ -3,7 +3,7 @@ from test.support.import_helper import import_module
 from test.support import check_sanitizer
 
 if check_sanitizer(address=True, memory=True):
-    raise unittest.SkipTest("Tests involvin libX11 can SEGFAULT on ASAN/MSAN builds")
+    raise unittest.SkipTest("Tests involving libX11 can SEGFAULT on ASAN/MSAN builds")
 
 # Skip test_idle if _tkinter wasn't built, if tkinter is missing,
 # if tcl/tk is not the 8.5+ needed for ttk widgets,
index 454baeb38a93425a1d32d57ec530b4e43a42fd7d..d0d2a164ad2c6797058ea8033a08de17df6550ce 100644 (file)
@@ -5,7 +5,7 @@ from test.support import import_helper
 from test.support import check_sanitizer
 
 if check_sanitizer(address=True, memory=True):
-    raise unittest.SkipTest("Tests involvin libX11 can SEGFAULT on ASAN/MSAN builds")
+    raise unittest.SkipTest("Tests involving libX11 can SEGFAULT on ASAN/MSAN builds")
 
 
 # Skip this test if the _tkinter module wasn't built.