Skip to content

Commit

Permalink
remove xfail mark: 54868
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <[email protected]>
  • Loading branch information
anmyachev committed Sep 21, 2023
1 parent add361d commit 0e9f66d
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions modin/pandas/test/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -2717,20 +2717,8 @@ def test_fwf_file_colspecs_widths(self, make_fwf_file, kwargs):
"usecols",
[
["a"],
pytest.param(
["a", "b", "d"],
marks=pytest.mark.xfail(
Engine.get() != "Python" and StorageFormat.get() != "Hdk",
reason="https://github.com/pandas-dev/pandas/issues/54868",
),
),
pytest.param(
[0, 1, 3],
marks=pytest.mark.xfail(
Engine.get() != "Python" and StorageFormat.get() != "Hdk",
reason="https://github.com/pandas-dev/pandas/issues/54868",
),
),
["a", "b", "d"],
[0, 1, 3],
],
)
def test_fwf_file_usecols(self, make_fwf_file, usecols):
Expand Down

0 comments on commit 0e9f66d

Please sign in to comment.