diff options
author | Georg Brandl <georg@python.org> | 2010-02-07 12:25:50 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-02-07 12:25:50 (GMT) |
commit | 41dc63fae5de14689ac40cfd91a8a38fc07e3748 (patch) | |
tree | d33befc6d8a96c52a99f98bf778fc030fc1c0358 /Lib | |
parent | b3cda98dd19062aa2cd267f08e7a3334aaaae9fb (diff) | |
download | cpython-41dc63fae5de14689ac40cfd91a8a38fc07e3748.zip cpython-41dc63fae5de14689ac40cfd91a8a38fc07e3748.tar.gz cpython-41dc63fae5de14689ac40cfd91a8a38fc07e3748.tar.bz2 |
Fix two redefined test methods.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_csv.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_csv.py b/Lib/test/test_csv.py index bb354b9..196d18c 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): |