Skip to content

Commit 6725536

Browse files
committed
BUG: read_csv throws UnicodeDecodeError with unicode aliases
removed `pd` from `pd.DataFrame` see issue pandas-dev#13549
1 parent 9c88919 commit 6725536

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/tests/parser/common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1473,7 +1473,7 @@ def test_memory_map(self):
14731473
def test_read_csv_utf_aliases(self):
14741474
# see gh issue 13549
14751475
path = 'test.csv'
1476-
expected = pd.DataFrame({'A': [0, 1], 'B': [2, 3],
1476+
expected = DataFrame({'A': [0, 1], 'B': [2, 3],
14771477
'multibyte_test': ['testing123', 'bananabis'],
14781478
'mb_nums': [154.868, 457.8798]})
14791479

0 commit comments

Comments
 (0)