diff --git a/pandas/tests/frame/test_constructors.py b/pandas/tests/frame/test_constructors.py index f371f4e93a29e..68017786eb6a6 100644 --- a/pandas/tests/frame/test_constructors.py +++ b/pandas/tests/frame/test_constructors.py @@ -15,7 +15,7 @@ import pandas as pd from pandas import ( Categorical, DataFrame, Index, MultiIndex, RangeIndex, Series, Timedelta, - Timestamp, compat, date_range, isna) + Timestamp, date_range, isna) from pandas.tests.frame.common import TestData import pandas.util.testing as tm @@ -113,7 +113,6 @@ def test_constructor_dtype_list_data(self): assert df.loc[1, 0] is None assert df.loc[0, 1] == '2' - @pytest.mark.xfail(compat.numpy._is_numpy_dev, reason="GH-26546") def test_constructor_list_frames(self): # see gh-3243 result = DataFrame([DataFrame()])