summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-08-23 20:06:31 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-08-23 20:06:31 (GMT)
commit6c61a5afef996aec59309480236d06ad174d0866 (patch)
tree4c32606a69ff1fc106fa72e001c63b2c2f789122 /Lib/test
parent537f15645a42799594dc735545bcdad79f8ebd9c (diff)
downloadcpython-6c61a5afef996aec59309480236d06ad174d0866.zip
cpython-6c61a5afef996aec59309480236d06ad174d0866.tar.gz
cpython-6c61a5afef996aec59309480236d06ad174d0866.tar.bz2
#18798: fix typo in test_fcntl. Patch by Vajrasky Kok.
Diffstat (limited to 'Lib/test')
-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 7a35f61..d7e409c 100644
--- a/Lib/test/test_fcntl.py
+++ b/Lib/test/test_fcntl.py
@@ -11,7 +11,7 @@ import unittest
from test.test_support import (verbose, TESTFN, unlink, run_unittest,
import_module)
-# Skip test if no fnctl module.
+# Skip test if no fcntl module.
fcntl = import_module('fcntl')