[Python-checkins] r78077 - python/trunk/Lib/test/test_csv.py

georg.brandl python-checkins at python.org
Sun Feb 7 13:25:51 CET 2010


Author: georg.brandl
Date: Sun Feb  7 13:25:50 2010
New Revision: 78077

Log:
Fix two redefined test methods.

Modified:
   python/trunk/Lib/test/test_csv.py

Modified: python/trunk/Lib/test/test_csv.py
==============================================================================
--- python/trunk/Lib/test/test_csv.py	(original)
+++ python/trunk/Lib/test/test_csv.py	Sun Feb  7 13:25:50 2010
@@ -549,10 +549,10 @@
     def test_null(self):
         self.writerAssertEqual([], '')
 
-    def test_single(self):
+    def test_single_writer(self):
         self.writerAssertEqual([['abc']], 'abc\r\n')
 
-    def test_simple(self):
+    def test_simple_writer(self):
         self.writerAssertEqual([[1, 2, 'abc', 3, 4]], '1,2,abc,3,4\r\n')
 
     def test_quotes(self):


More information about the Python-checkins mailing list