We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fa91b9 commit e379e9fCopy full SHA for e379e9f
pandas/io/tests/parser/common.py
@@ -1476,7 +1476,6 @@ def test_read_csv_utf_aliases(self):
1476
# see gh issue 13549
1477
expected = pd.DataFrame({'mb_num': [4.8], 'multibyte': ['test']})
1478
for byte in [8, 16]:
1479
- expected.to_csv(path, encoding='utf-' + str(byte), index=False)
1480
for fmt in ['utf-{0}', 'utf_{0}', 'UTF-{0}', 'UTF_{0}']:
1481
encoding = fmt.format(byte)
1482
data = 'mb_num,multibyte\n4.8,test'.encode(encoding)
0 commit comments