mirror of
https://github.com/python/cpython.git
synced 2025-12-08 06:10:17 +00:00
[3.11] gh-95672 fix typo SkitTest to SkipTest (gh-102119) (#102121)
gh-95672 fix typo SkitTest to SkipTest (gh-102119)
(cherry picked from commit d5c7954d0c)
Co-authored-by: HyunKyun Moon <hyunkyun.moon@linecorp.com>
This commit is contained in:
parent
3bfa608cbe
commit
5d47150eac
3 changed files with 3 additions and 2 deletions
|
|
@ -200,7 +200,7 @@ def test_fcntl_f_pipesize(self):
|
||||||
pipesize_default = fcntl.fcntl(test_pipe_w, fcntl.F_GETPIPE_SZ)
|
pipesize_default = fcntl.fcntl(test_pipe_w, fcntl.F_GETPIPE_SZ)
|
||||||
pipesize = pipesize_default // 2 # A new value to detect change.
|
pipesize = pipesize_default // 2 # A new value to detect change.
|
||||||
if pipesize < 512: # the POSIX minimum
|
if pipesize < 512: # the POSIX minimum
|
||||||
raise unittest.SkitTest(
|
raise unittest.SkipTest(
|
||||||
'default pipesize too small to perform test.')
|
'default pipesize too small to perform test.')
|
||||||
fcntl.fcntl(test_pipe_w, fcntl.F_SETPIPE_SZ, pipesize)
|
fcntl.fcntl(test_pipe_w, fcntl.F_SETPIPE_SZ, pipesize)
|
||||||
self.assertEqual(fcntl.fcntl(test_pipe_w, fcntl.F_GETPIPE_SZ),
|
self.assertEqual(fcntl.fcntl(test_pipe_w, fcntl.F_GETPIPE_SZ),
|
||||||
|
|
|
||||||
|
|
@ -718,7 +718,7 @@ def test_pipesizes(self):
|
||||||
os.close(test_pipe_w)
|
os.close(test_pipe_w)
|
||||||
pipesize = pipesize_default // 2
|
pipesize = pipesize_default // 2
|
||||||
if pipesize < 512: # the POSIX minimum
|
if pipesize < 512: # the POSIX minimum
|
||||||
raise unittest.SkitTest(
|
raise unittest.SkipTest(
|
||||||
'default pipesize too small to perform test.')
|
'default pipesize too small to perform test.')
|
||||||
p = subprocess.Popen(
|
p = subprocess.Popen(
|
||||||
[sys.executable, "-c",
|
[sys.executable, "-c",
|
||||||
|
|
|
||||||
|
|
@ -1220,6 +1220,7 @@ The Dragon De Monsyne
|
||||||
Bastien Montagne
|
Bastien Montagne
|
||||||
Skip Montanaro
|
Skip Montanaro
|
||||||
Peter Moody
|
Peter Moody
|
||||||
|
HyunKyun Moon
|
||||||
Alan D. Moore
|
Alan D. Moore
|
||||||
Nicolai Moore
|
Nicolai Moore
|
||||||
Paul Moore
|
Paul Moore
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue