Skip to content
Prev Previous commit
Restore change in datetime like
  • Loading branch information
charlesdong1991 committed Aug 21, 2019
commit 0801eadf19ce5bf5b4fd0a2773e8b26d94285cad
8 changes: 0 additions & 8 deletions pandas/tests/plotting/test_datetimelike.py
Original file line number Diff line number Diff line change
Expand Up @@ -419,8 +419,6 @@ def test_get_finder(self):
assert conv.get_finder("A") == conv._annual_finder
assert conv.get_finder("W") == conv._daily_finder

# TODO: The finder should be retested due to wrong xlim values on x-axis
@pytest.mark.xfail(reason="TODO: check details in GH28021")
@pytest.mark.slow
def test_finder_daily(self):
day_lst = [10, 40, 252, 400, 950, 2750, 10000]
Expand All @@ -444,8 +442,6 @@ def test_finder_daily(self):
assert rs1 == xpl1
assert rs2 == xpl2

# TODO: The finder should be retested due to wrong xlim values on x-axis
@pytest.mark.xfail(reason="TODO: check details in GH28021")
@pytest.mark.slow
def test_finder_quarterly(self):
yrs = [3.5, 11]
Expand All @@ -469,8 +465,6 @@ def test_finder_quarterly(self):
assert rs1 == xpl1
assert rs2 == xpl2

# TODO: The finder should be retested due to wrong xlim values on x-axis
@pytest.mark.xfail(reason="TODO: check details in GH28021")
@pytest.mark.slow
def test_finder_monthly(self):
yrs = [1.15, 2.5, 4, 11]
Expand Down Expand Up @@ -504,8 +498,6 @@ def test_finder_monthly_long(self):
xp = Period("1989Q1", "M").ordinal
assert rs == xp

# TODO: The finder should be retested due to wrong xlim values on x-axis
@pytest.mark.xfail(reason="TODO: check details in GH28021")
@pytest.mark.slow
def test_finder_annual(self):
xp = [1987, 1988, 1990, 1990, 1995, 2020, 2070, 2170]
Expand Down