Skip to content

Commit 2e5d4ab

Browse files
committed
remove xfail for tests fixed by pandas-dev#21861
1 parent 6547e9c commit 2e5d4ab

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

pandas/tests/series/test_arithmetic.py

+2-6
Original file line numberDiff line numberDiff line change
@@ -816,12 +816,8 @@ def test_td64series_mul_numeric_scalar(self, one, tdser):
816816

817817
@pytest.mark.parametrize('two', [
818818
2, 2.0,
819-
pytest.param(np.array(2),
820-
marks=pytest.mark.xfail(reason='GH#19011 is_list_like '
821-
'incorrectly True.')),
822-
pytest.param(np.array(2.0),
823-
marks=pytest.mark.xfail(reason='GH#19011 is_list_like '
824-
'incorrectly True.')),
819+
np.array(2),
820+
np.array(2.0),
825821
])
826822
def test_td64series_div_numeric_scalar(self, two, tdser):
827823
# GH#4521

0 commit comments

Comments
 (0)