Skip to content

Commit 92fb29a

Browse files
committed
TST: ok, this appears to work GH #680
1 parent 7ced6fb commit 92fb29a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pandas/tests/test_frame.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1844,11 +1844,9 @@ def test_to_string_unicode_two(self):
18441844
def test_to_string_with_formatters_unicode(self):
18451845
df = DataFrame({u'c/\u03c3':[1,2,3]})
18461846
result = df.to_string(formatters={u'c/\u03c3': lambda x: '%s' % x})
1847-
unicode_version = u' c/\u03c3\n0 1 \n1 2 \n2 3 '
18481847
assert(result in
18491848
(' c/\xcf\x83\n0 1 \n1 2 \n2 3 ',
1850-
unicode_version.encode('cp437', 'ignore'),
1851-
unicode_version.encode('latin1', 'ignore'),
1849+
u' c/\u03c3\n0 1 \n1 2 \n2 3 '.encode('cp437', 'ignore'),
18521850
' c/?\n0 1 \n1 2 \n2 3 ' ))
18531851

18541852
def test_head_tail(self):

0 commit comments

Comments
 (0)