Skip to content

Commit 5b07906

Browse files
committed
py3 fixup
1 parent 60e0d02 commit 5b07906

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pandas/tests/extension/base/printing.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ def test_array_repr_bytes(self, data):
3333
assert isinstance(result, bytes)
3434

3535
def test_array_repr_unicode(self, data):
36-
result = compat.u(data)
36+
if compat.PY2:
37+
result = compat.u(data)
38+
else:
39+
result = str(data)
3740
assert isinstance(result, compat.text_type)
3841

3942
def test_series_repr(self, data):

0 commit comments

Comments
 (0)