]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-95672 fix typo SkitTest to SkipTest (gh-102119)
authorHyunkyun Moon <mhg5303@gmail.com>
Tue, 21 Feb 2023 17:39:00 +0000 (02:39 +0900)
committerGitHub <noreply@github.com>
Tue, 21 Feb 2023 17:39:00 +0000 (02:39 +0900)
Co-authored-by: HyunKyun Moon <hyunkyun.moon@linecorp.com>
Lib/test/test_fcntl.py
Lib/test/test_subprocess.py
Misc/ACKS

index 113c7802821dd45a16a2e6dfa8ec287f689d2e33..26de67d924272a9b3f3ba0302e1bbd251daadc5d 100644 (file)
@@ -202,7 +202,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 abd0dd8b25699bb68be28a5897ea680e47770db6..727b0e6dc578c2958b8ec0dc7775dea669419049 100644 (file)
@@ -718,7 +718,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 ab19d69b0133d2110a448a13d2563564e4422e68..33dbf4e989d96a4394c6ec445ff85f3f9fd35bcc 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1229,6 +1229,7 @@ The Dragon De Monsyne
 Bastien Montagne
 Skip Montanaro
 Peter Moody
+HyunKyun Moon
 Alan D. Moore
 Nicolai Moore
 Paul Moore