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 2ecbc50 commit 70f7204Copy full SHA for 70f7204
pandas/tests/indexing/multiindex/test_setitem.py
@@ -510,7 +510,8 @@ def test_setitem_enlargement_multiindex_with_none(self):
510
index=expected_index,
511
columns=[0, 1],
512
)
513
- tm.assert_frame_equal(df, expected)
+
514
+ tm.assert_frame_equal(df, expected, check_exact=False)
515
516
# Test retrieval of the newly added row
517
result = df.loc[("A", None), :]
@@ -542,7 +543,8 @@ def test_setitem_enlargement_multiindex_multiple_none(self):
542
543
544
columns=["x", "y"],
545
546
547
548
549
550
0 commit comments