From 7dbab4beff90ea75486754dafee86122af0da6ad Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Thu, 30 May 2019 21:55:04 -0500 Subject: [PATCH] Revert test_constructors xfail Reverts https://github.com/pandas-dev/pandas/pull/26548 xref https://github.com/numpy/numpy/pull/13663 Closes https://github.com/pandas-dev/pandas/issues/26546 --- pandas/tests/frame/test_constructors.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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()])