From: Georg Brandl Date: Sun, 3 Jul 2011 17:22:42 +0000 (+0200) Subject: Remove mention of medical condition from the test suite. X-Git-Tag: v3.3.0a1~1980^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aeaeefa88b323324f7ceaff2823881d86b98a280;p=python Remove mention of medical condition from the test suite. --- diff --git a/Lib/test/test_csv.py b/Lib/test/test_csv.py index 8ca1e62c4a..2cca0e964c 100644 --- a/Lib/test/test_csv.py +++ b/Lib/test/test_csv.py @@ -459,20 +459,20 @@ class TestDialectExcel(TestCsvBase): '5', '6']]) 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', - '"I see," said the blind man', + '"I see," said the happy man', 'as he picked up his hammer and saw']]) def test_quoted_nl(self): input = '''\ 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" 9,8,7,6''' self.readerAssertEqual(input, [['1', '2', '3', - '"I see,"\nsaid the blind man', + '"I see,"\nsaid the happy man', 'as he picked up his\nhammer and saw'], ['9','8','7','6']])