[Python-checkins] cpython (3.2): Fix typo in test names

antoine.pitrou python-checkins at python.org
Fri Aug 19 20:35:33 CEST 2011


http://hg.python.org/cpython/rev/de2fe7996e36
changeset:   71972:de2fe7996e36
branch:      3.2
parent:      71969:f2d7d447609e
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Fri Aug 19 20:32:34 2011 +0200
summary:
  Fix typo in test names

files:
  Lib/test/test_io.py |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py
--- a/Lib/test/test_io.py
+++ b/Lib/test/test_io.py
@@ -2796,11 +2796,11 @@
             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 @@
                 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")
 
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list