We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bc4ef8 commit d80d702Copy full SHA for d80d702
pandas/tests/test_strings.py
@@ -85,7 +85,7 @@ def all_string_methods(request):
85
86
_all_allowed_skipna_inferred_dtypes = [
87
('string', ['a', np.nan, 'c']),
88
- ('unicode' if not PY3 else 'string', ['á', np.nan, 'c']),
+ ('unicode' if not PY3 else 'string', [u('a'), np.nan, u('c')]),
89
('bytes' if PY3 else 'string', [b'a', np.nan, b'c']),
90
('empty', [np.nan, np.nan, np.nan]),
91
('mixed-integer', ['a', np.nan, 2]),
0 commit comments