From: Georg Brandl Date: Sun, 7 Feb 2010 12:25:50 +0000 (+0000) Subject: Fix two redefined test methods. X-Git-Tag: v2.7a4~236 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=41dc63fae5de14689ac40cfd91a8a38fc07e3748;p=thirdparty%2FPython%2Fcpython.git Fix two redefined test methods. --- diff --git a/Lib/test/test_csv.py b/Lib/test/test_csv.py index bb354b903f94..196d18c2a762 100644 --- a/Lib/test/test_csv.py +++ b/Lib/test/test_csv.py @@ -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):