From d5c7954d0c3ff874d2d27d33dcc207bb7356f328 Mon Sep 17 00:00:00 2001
From: Hyunkyun Moon <mhg5303@gmail.com>
Date: Wed, 22 Feb 2023 02:39:00 +0900
Subject: [PATCH] gh-95672 fix typo SkitTest to SkipTest (gh-102119)

Co-authored-by: HyunKyun Moon <hyunkyun.moon@linecorp.com>
---
 Lib/test/test_fcntl.py      | 2 +-
 Lib/test/test_subprocess.py | 2 +-
 Misc/ACKS                   | 1 +
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/Lib/test/test_fcntl.py b/Lib/test/test_fcntl.py
index 113c7802821dd4..26de67d924272a 100644
--- a/Lib/test/test_fcntl.py
+++ b/Lib/test/test_fcntl.py
@@ -202,7 +202,7 @@ def test_fcntl_f_pipesize(self):
             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),
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index abd0dd8b25699b..727b0e6dc578c2 100644
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -718,7 +718,7 @@ def test_pipesizes(self):
             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",
diff --git a/Misc/ACKS b/Misc/ACKS
index ab19d69b0133d2..33dbf4e989d96a 100644
--- 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