We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b668c64 commit 998b09aCopy full SHA for 998b09a
pandas/tests/test_frame.py
@@ -3845,15 +3845,15 @@ def test_to_csv_line_terminators(self):
3845
3846
buf = StringIO()
3847
df.to_csv(buf, line_terminator='\r\n')
3848
- expected = ('A,B\r\n'
+ expected = (',A,B\r\n'
3849
'one,1,4\r\n'
3850
'two,2,5\r\n'
3851
'three,3,6\r\n')
3852
self.assertEqual(buf.getvalue(), expected)
3853
3854
3855
df.to_csv(buf) # The default line terminator remains \n
3856
- expected = ('A,B\n'
+ expected = (',A,B\n'
3857
'one,1,4\n'
3858
'two,2,5\n'
3859
'three,3,6\n')
0 commit comments