summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_io.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-08-19 18:33:11 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-08-19 18:33:11 (GMT)
commit107d65d1448e9f526469bb306204260dc83f49a7 (patch)
tree2a027f0f1c9593f628e9c042beb1e4e693d71591 /Lib/test/test_io.py
parent8e35cf0770b9cecda2bd1e5a8e99ef8b333177a3 (diff)
parent20db51108cf996aeb03f4e7101bb850fb763b984 (diff)
downloadcpython-107d65d1448e9f526469bb306204260dc83f49a7.zip
cpython-107d65d1448e9f526469bb306204260dc83f49a7.tar.gz
cpython-107d65d1448e9f526469bb306204260dc83f49a7.tar.bz2
Fix typo in test names
Diffstat (limited to 'Lib/test/test_io.py')
-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 0d68ca1..c11aafd 100644
--- a/Lib/test/test_io.py
+++ b/Lib/test/test_io.py
@@ -2804,11 +2804,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")
@@ -2867,10 +2867,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")