gh-95672 fix typo SkitTest to SkipTest (gh-102119)

Co-authored-by: HyunKyun Moon <hyunkyun.moon@linecorp.com>
This commit is contained in:
Hyunkyun Moon 2023-02-22 02:39:00 +09:00 committed by GitHub
parent 0d4c7fcd4f
commit d5c7954d0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View file

@ -202,7 +202,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),

View file

@ -718,7 +718,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",

View file

@ -1229,6 +1229,7 @@ The Dragon De Monsyne
Bastien Montagne
Skip Montanaro
Peter Moody
HyunKyun Moon
Alan D. Moore
Nicolai Moore
Paul Moore