summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-08-19 18:32:34 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-08-19 18:32:34 (GMT)
commit20db51108cf996aeb03f4e7101bb850fb763b984 (patch)
tree247b525fb5cbea50e584af5f050f5e48062406df /Lib
parentf693810f694f8672ceb6fb86ca4201344ae4ae43 (diff)
downloadcpython-20db51108cf996aeb03f4e7101bb850fb763b984.zip
cpython-20db51108cf996aeb03f4e7101bb850fb763b984.tar.gz
cpython-20db51108cf996aeb03f4e7101bb850fb763b984.tar.bz2
Fix typo in test names
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_io.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py
index 0ca621c..d32580c 100644
--- a/Lib/test/test_io.py
+++ b/Lib/test/test_io.py
@@ -2796,11 +2796,11 @@ class SignalsTest(unittest.TestCase):
os.close(w)
os.close(r)
- def test_interrupterd_read_retry_buffered(self):
+ def test_interrupted_read_retry_buffered(self):
self.check_interrupted_read_retry(lambda x: x.decode('latin1'),
mode="rb")
- def test_interrupterd_read_retry_text(self):
+ def test_interrupted_read_retry_text(self):
self.check_interrupted_read_retry(lambda x: x,
mode="r")
@@ -2859,10 +2859,10 @@ class SignalsTest(unittest.TestCase):
if e.errno != errno.EBADF:
raise
- def test_interrupterd_write_retry_buffered(self):
+ def test_interrupted_write_retry_buffered(self):
self.check_interrupted_write_retry(b"x", mode="wb")
- def test_interrupterd_write_retry_text(self):
+ def test_interrupted_write_retry_text(self):
self.check_interrupted_write_retry("x", mode="w", encoding="latin1")