]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.10] gh-95672 fix typo SkitTest to SkipTest (gh-102119) (gh-102122)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 22 Feb 2023 01:36:00 +0000 (17:36 -0800)
committerGitHub <noreply@github.com>
Wed, 22 Feb 2023 01:36:00 +0000 (10:36 +0900)
gh-95672 fix typo SkitTest to SkipTest (gh-102119)
(cherry picked from commit d5c7954d0c3ff874d2d27d33dcc207bb7356f328)

Co-authored-by: HyunKyun Moon <hyunkyun.moon@linecorp.com>
Lib/test/test_fcntl.py
Lib/test/test_subprocess.py
Misc/ACKS

index fc8c39365f12b795bbc20be50a398e8a2cb02247..8e98256a62c6d63c5f0bd29b6d6970321e9a77b6 100644 (file)
@@ -200,7 +200,7 @@ class TestFcntl(unittest.TestCase):
             pipesize_default = fcntl.fcntl(test_pipe_w, fcntl.F_GETPIPE_SZ)
             pipesize = pipesize_default // 2  # A new value to detect change.
             if pipesize < 512:  # the POSIX minimum
-                raise unittest.SkitTest(
+                raise unittest.SkipTest(
                     'default pipesize too small to perform test.')
             fcntl.fcntl(test_pipe_w, fcntl.F_SETPIPE_SZ, pipesize)
             self.assertEqual(fcntl.fcntl(test_pipe_w, fcntl.F_GETPIPE_SZ),
index ea02a9ecb67af5ee8a7967421285340ce8e00e18..52540acf7e6d68a6f5257d5e261b25bca0a1045a 100644 (file)
@@ -707,7 +707,7 @@ class ProcessTestCase(BaseTestCase):
             os.close(test_pipe_w)
         pipesize = pipesize_default // 2
         if pipesize < 512:  # the POSIX minimum
-            raise unittest.SkitTest(
+            raise unittest.SkipTest(
                 'default pipesize too small to perform test.')
         p = subprocess.Popen(
             [sys.executable, "-c",
index b9aa307ae0878671c72b38e87cb05d9ae73d1a62..c96c4876e6cb2ebce3980919025e9c51a3f88bf7 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1209,6 +1209,7 @@ The Dragon De Monsyne
 Bastien Montagne
 Skip Montanaro
 Peter Moody
+HyunKyun Moon
 Alan D. Moore
 Nicolai Moore
 Paul Moore