mirror of
https://github.com/python/cpython.git
synced 2025-07-29 06:05:00 +00:00
Fix two redefined test methods.
This commit is contained in:
parent
b3cda98dd1
commit
41dc63fae5
1 changed files with 2 additions and 2 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue