Skip to content

Commit f2ccd80

Browse files
committed
Follow-up to pandas-dev#25631
1 parent 7c0066b commit f2ccd80

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pandas/tests/frame/test_constructors.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import pandas as pd
2222
from pandas import (
2323
Categorical, DataFrame, Index, MultiIndex, Series, Timedelta, Timestamp,
24-
_np_version_under1p13, compat, date_range, isna)
24+
compat, date_range, isna)
2525
from pandas.tests.frame.common import TestData
2626
import pandas.util.testing as tm
2727

@@ -684,8 +684,7 @@ def test_constructor_ndarray(self):
684684
frame = DataFrame(['foo', 'bar'], index=[0, 1], columns=['A'])
685685
assert len(frame) == 2
686686

687-
@pytest.mark.skipif(PY2 & _np_version_under1p13,
688-
reason="old numpy & py2")
687+
@pytest.mark.skipif(PY2, reason="old numpy & py2")
689688
def test_constructor_maskedarray(self):
690689
self._check_basic_constructor(ma.masked_all)
691690

0 commit comments

Comments
 (0)