Skip to content

Commit bac3fe7

Browse files
[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 d5c7954) Co-authored-by: HyunKyun Moon <[email protected]>
1 parent 444ec74 commit bac3fe7

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
@@ -200,7 +200,7 @@ def test_fcntl_f_pipesize(self):
200200
pipesize_default = fcntl.fcntl(test_pipe_w, fcntl.F_GETPIPE_SZ)
201201
pipesize = pipesize_default // 2 # A new value to detect change.
202202
if pipesize < 512: # the POSIX minimum
203-
raise unittest.SkitTest(
203+
raise unittest.SkipTest(
204204
'default pipesize too small to perform test.')
205205
fcntl.fcntl(test_pipe_w, fcntl.F_SETPIPE_SZ, pipesize)
206206
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
@@ -707,7 +707,7 @@ def test_pipesizes(self):
707707
os.close(test_pipe_w)
708708
pipesize = pipesize_default // 2
709709
if pipesize < 512: # the POSIX minimum
710-
raise unittest.SkitTest(
710+
raise unittest.SkipTest(
711711
'default pipesize too small to perform test.')
712712
p = subprocess.Popen(
713713
[sys.executable, "-c",

Misc/ACKS

+1
Original file line numberDiff line numberDiff line change
@@ -1209,6 +1209,7 @@ The Dragon De Monsyne
12091209
Bastien Montagne
12101210
Skip Montanaro
12111211
Peter Moody
1212+
HyunKyun Moon
12121213
Alan D. Moore
12131214
Nicolai Moore
12141215
Paul Moore

0 commit comments

Comments
 (0)