Skip to content

Commit

Permalink
remove extra xfail
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisvandenbossche committed Nov 7, 2024
1 parent db31cfd commit e2e36a0
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions pandas/tests/frame/methods/test_align.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
import numpy as np
import pytest

from pandas._config import using_string_dtype

import pandas as pd
from pandas import (
DataFrame,
Expand Down Expand Up @@ -157,7 +155,6 @@ def test_align_series_condition(self):
expected = DataFrame({"a": [0, 2, 0], "b": [0, 5, 0]})
tm.assert_frame_equal(result, expected)

@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
def test_align_int(self, int_frame):
# test other non-float types
other = DataFrame(index=range(5), columns=["A", "B", "C"])
Expand Down

0 comments on commit e2e36a0

Please sign in to comment.