We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ced6fb commit 92fb29aCopy full SHA for 92fb29a
pandas/tests/test_frame.py
@@ -1844,11 +1844,9 @@ def test_to_string_unicode_two(self):
1844
def test_to_string_with_formatters_unicode(self):
1845
df = DataFrame({u'c/\u03c3':[1,2,3]})
1846
result = df.to_string(formatters={u'c/\u03c3': lambda x: '%s' % x})
1847
- unicode_version = u' c/\u03c3\n0 1 \n1 2 \n2 3 '
1848
assert(result in
1849
(' c/\xcf\x83\n0 1 \n1 2 \n2 3 ',
1850
- unicode_version.encode('cp437', 'ignore'),
1851
- unicode_version.encode('latin1', 'ignore'),
+ u' c/\u03c3\n0 1 \n1 2 \n2 3 '.encode('cp437', 'ignore'),
1852
' c/?\n0 1 \n1 2 \n2 3 ' ))
1853
1854
def test_head_tail(self):
0 commit comments