Skip to content

Commit e1a6e0a

Browse files
author
Ben Kandel
committed
put back in conversion to object
1 parent 30bbeb4 commit e1a6e0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/indexes/test_multi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def assert_matching(actual, expected):
154154
# as much as possible
155155
self.assertEqual(len(actual), len(expected))
156156
for act, exp in zip(actual, expected):
157-
act = np.asarray(act)
157+
act = np.asarray(act, dtype=np.object_)
158158
exp = np.asarray(exp, dtype=np.object_)
159159
tm.assert_numpy_array_equal(act, exp)
160160

0 commit comments

Comments
 (0)