]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Revert 76452b892838 as per http://mail.python.org/pipermail/python-dev/2011-July...
authorGeorg Brandl <georg@python.org>
Wed, 6 Jul 2011 05:31:38 +0000 (07:31 +0200)
committerGeorg Brandl <georg@python.org>
Wed, 6 Jul 2011 05:31:38 +0000 (07:31 +0200)
Lib/test/test_csv.py

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