summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_fcntl.py
diff options
context:
space:
mode:
authorHyunkyun Moon <mhg5303@gmail.com>2023-02-21 17:39:00 (GMT)
committerGitHub <noreply@github.com>2023-02-21 17:39:00 (GMT)
commitd5c7954d0c3ff874d2d27d33dcc207bb7356f328 (patch)
treef15d70d8f5f488b4209705f5dfa6e603c332b8df /Lib/test/test_fcntl.py
parent0d4c7fcd4f078708a5ac6499af378ce5ee8eb211 (diff)
downloadcpython-d5c7954d0c3ff874d2d27d33dcc207bb7356f328.zip
cpython-d5c7954d0c3ff874d2d27d33dcc207bb7356f328.tar.gz
cpython-d5c7954d0c3ff874d2d27d33dcc207bb7356f328.tar.bz2
gh-95672 fix typo SkitTest to SkipTest (gh-102119)
Co-authored-by: HyunKyun Moon <hyunkyun.moon@linecorp.com>
Diffstat (limited to 'Lib/test/test_fcntl.py')
-rw-r--r--Lib/test/test_fcntl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_fcntl.py b/Lib/test/test_fcntl.py
index 113c780..26de67d 100644
--- a/Lib/test/test_fcntl.py
+++ b/Lib/test/test_fcntl.py
@@ -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),