Skip to content

Commit 239f3c0

Browse files
committed
use strict=False
1 parent 926d3f1 commit 239f3c0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/sparse/test_pivot.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ def test_pivot_table(self):
5050
# tm.assert_frame_equal(res_sparse, res_dense)
5151

5252
@pytest.mark.xfail(not _np_version_under1p17,
53-
reason="failing occasionally on numpy > 1.17")
53+
reason="failing occasionally on numpy > 1.17",
54+
strict=False)
5455
def test_pivot_table_multi(self):
5556
res_sparse = pd.pivot_table(self.sparse, index='A', columns='B',
5657
values=['D', 'E'])

0 commit comments

Comments
 (0)