Remove mention of medical condition from the test suite.

This commit is contained in:
Georg Brandl 2011-07-03 19:22:42 +02:00
parent 1c405b3e60
commit aeaeefa88b
1 changed files with 4 additions and 4 deletions

View File

@ -459,20 +459,20 @@ class TestDialectExcel(TestCsvBase):
'5', '6']]) '5', '6']])
def test_quoted_quote(self): def test_quoted_quote(self):
self.readerAssertEqual('1,2,3,"""I see,"" said the blind man","as he picked up his hammer and saw"', self.readerAssertEqual('1,2,3,"""I see,"" said the happy man","as he picked up his hammer and saw"',
[['1', '2', '3', [['1', '2', '3',
'"I see," said the blind man', '"I see," said the happy man',
'as he picked up his hammer and saw']]) 'as he picked up his hammer and saw']])
def test_quoted_nl(self): def test_quoted_nl(self):
input = '''\ input = '''\
1,2,3,"""I see,"" 1,2,3,"""I see,""
said the blind man","as he picked up his said the happy man","as he picked up his
hammer and saw" hammer and saw"
9,8,7,6''' 9,8,7,6'''
self.readerAssertEqual(input, self.readerAssertEqual(input,
[['1', '2', '3', [['1', '2', '3',
'"I see,"\nsaid the blind man', '"I see,"\nsaid the happy man',
'as he picked up his\nhammer and saw'], 'as he picked up his\nhammer and saw'],
['9','8','7','6']]) ['9','8','7','6']])