summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-02-22 01:36:00 (GMT)
committerGitHub <noreply@github.com>2023-02-22 01:36:00 (GMT)
commitbac3fe76dfadca20c5d5a435b268fe4f799981bf (patch)
tree93e01338af9d55837c5a8672c653781aa2de83ba
parent444ec749452b67318404ae0d6007e62298b012fc (diff)
downloadcpython-bac3fe76dfadca20c5d5a435b268fe4f799981bf.zip
cpython-bac3fe76dfadca20c5d5a435b268fe4f799981bf.tar.gz
cpython-bac3fe76dfadca20c5d5a435b268fe4f799981bf.tar.bz2
[3.10] gh-95672 fix typo SkitTest to SkipTest (gh-102119) (gh-102122)
gh-95672 fix typo SkitTest to SkipTest (gh-102119) (cherry picked from commit d5c7954d0c3ff874d2d27d33dcc207bb7356f328) Co-authored-by: HyunKyun Moon <hyunkyun.moon@linecorp.com>
-rw-r--r--Lib/test/test_fcntl.py2
-rw-r--r--Lib/test/test_subprocess.py2
-rw-r--r--Misc/ACKS1
3 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_fcntl.py b/Lib/test/test_fcntl.py
index fc8c393..8e98256 100644
--- a/Lib/test/test_fcntl.py
+++ b/Lib/test/test_fcntl.py
@@ -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),
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index ea02a9e..52540ac 100644
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -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",
diff --git a/Misc/ACKS b/Misc/ACKS
index b9aa307..c96c487 100644
--- 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