]> granicus.if.org Git - python/commitdiff
Fix two redefined test methods.
authorGeorg Brandl <georg@python.org>
Sun, 7 Feb 2010 12:25:50 +0000 (12:25 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 7 Feb 2010 12:25:50 +0000 (12:25 +0000)
Lib/test/test_csv.py

index bb354b903f942a1abc0c6b0613100b995ecb37a8..196d18c2a762677a90e781577e5b5f7ef25886dc 100644 (file)
@@ -549,10 +549,10 @@ hammer and saw"
     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):