Skip to content

Commit d5c7954

Browse files
gh-95672 fix typo SkitTest to SkipTest (gh-102119)
Co-authored-by: HyunKyun Moon <[email protected]>
1 parent 0d4c7fc commit d5c7954

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Lib/test/test_fcntl.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def test_fcntl_f_pipesize(self):
202202
pipesize_default = fcntl.fcntl(test_pipe_w, fcntl.F_GETPIPE_SZ)
203203
pipesize = pipesize_default // 2 # A new value to detect change.
204204
if pipesize < 512: # the POSIX minimum
205-
raise unittest.SkitTest(
205+
raise unittest.SkipTest(
206206
'default pipesize too small to perform test.')
207207
fcntl.fcntl(test_pipe_w, fcntl.F_SETPIPE_SZ, pipesize)
208208
self.assertEqual(fcntl.fcntl(test_pipe_w, fcntl.F_GETPIPE_SZ),

Lib/test/test_subprocess.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ def test_pipesizes(self):
718718
os.close(test_pipe_w)
719719
pipesize = pipesize_default // 2
720720
if pipesize < 512: # the POSIX minimum
721-
raise unittest.SkitTest(
721+
raise unittest.SkipTest(
722722
'default pipesize too small to perform test.')
723723
p = subprocess.Popen(
724724
[sys.executable, "-c",

Misc/ACKS

+1
Original file line numberDiff line numberDiff line change
@@ -1229,6 +1229,7 @@ The Dragon De Monsyne
12291229
Bastien Montagne
12301230
Skip Montanaro
12311231
Peter Moody
1232+
HyunKyun Moon
12321233
Alan D. Moore
12331234
Nicolai Moore
12341235
Paul Moore

0 commit comments

Comments
 (0)