We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4ecacc commit 0708b3fCopy full SHA for 0708b3f
motmetrics/tests/test_mot.py
@@ -310,6 +310,9 @@ def test_merge_dataframes():
310
311
idx = expect.index
312
expect.index = expect.index.set_levels(
313
- [idx.levels[0].astype(object), idx.levels[1].astype(object)]
+ [
314
+ idx.levels[0].astype(r.index.levels[0].dtype),
315
+ idx.levels[1].astype(r.index.levels[1].dtype),
316
+ ]
317
)
318
pd.testing.assert_frame_equal(r, expect)
0 commit comments