[Python-checkins] r70043 - python/branches/io-c/Lib/test/test_io.py

antoine.pitrou python-checkins at python.org
Sat Feb 28 02:13:51 CET 2009


Author: antoine.pitrou
Date: Sat Feb 28 02:13:50 2009
New Revision: 70043

Log:
Remove the last traces of java naming in test_io



Modified:
   python/branches/io-c/Lib/test/test_io.py

Modified: python/branches/io-c/Lib/test/test_io.py
==============================================================================
--- python/branches/io-c/Lib/test/test_io.py	(original)
+++ python/branches/io-c/Lib/test/test_io.py	Sat Feb 28 02:13:50 2009
@@ -471,7 +471,7 @@
         self.assertRaises(ValueError, self.open, support.TESTFN, 'w',
                           closefd=False)
 
-    def testReadClosed(self):
+    def test_read_closed(self):
         with self.open(support.TESTFN, "w") as f:
             f.write("egg\n")
         with self.open(support.TESTFN, "r") as f:


More information about the Python-checkins mailing list