Skip to content

Commit

Permalink
pythongh-95672 fix typo SkitTest to SkipTest (pythongh-102119)
Browse files Browse the repository at this point in the history
(cherry picked from commit d5c7954)

Co-authored-by: Hyunkyun Moon <mhg5303@gmail.com>
Co-authored-by: HyunKyun Moon <hyunkyun.moon@linecorp.com>
  • Loading branch information
2 people authored and miss-islington committed Feb 21, 2023
1 parent 3bfa608 commit d3f8606
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Lib/test/test_fcntl.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,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),
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_subprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 1 addition & 0 deletions Misc/ACKS
Original file line number Diff line number Diff line change
Expand Up @@ -1220,6 +1220,7 @@ The Dragon De Monsyne
Bastien Montagne
Skip Montanaro
Peter Moody
HyunKyun Moon
Alan D. Moore
Nicolai Moore
Paul Moore
Expand Down

0 comments on commit d3f8606

Please sign in to comment.