Skip to content

Commit 2442096

Browse files
committed
TST: unicode woes on windoze GH #680
1 parent 90550b9 commit 2442096

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/test_frame.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1847,8 +1847,8 @@ def test_to_string_with_formatters_unicode(self):
18471847
unicode_version = u' c/\u03c3\x83\n0 1 \n1 2 \n2 3 '
18481848
assert(result in
18491849
(' c/\xcf\x83\n0 1 \n1 2 \n2 3 ',
1850-
unicode_version.encode('cp437', 'replace'),
1851-
unicode_version.encode('latin1', 'replace'),
1850+
unicode_version.encode('cp437', 'ignore'),
1851+
unicode_version.encode('latin1', 'ignore'),
18521852
' c/?\n0 1 \n1 2 \n2 3 ' ))
18531853

18541854
def test_head_tail(self):

0 commit comments

Comments
 (0)