From 2fa4bb0c753a566a12be28655b71125cf8ea8833 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Wed, 28 Nov 2018 21:14:10 -0600 Subject: [PATCH] unxfail test, remove caching bit --- pandas/tests/dtypes/test_common.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pandas/tests/dtypes/test_common.py b/pandas/tests/dtypes/test_common.py index 42c3c49d79dcb..e176d273b916c 100644 --- a/pandas/tests/dtypes/test_common.py +++ b/pandas/tests/dtypes/test_common.py @@ -42,10 +42,7 @@ def test_numpy_string_dtype(self): 'datetime64[ns, US/Eastern]', 'datetime64[ns, Asia/Tokyo]', 'datetime64[ns, UTC]']) - @pytest.mark.xfail(reason="dtype-caching", strict=True) def test_datetimetz_dtype(self, dtype): - assert (com.pandas_dtype(dtype) is - DatetimeTZDtype.construct_from_string(dtype)) assert (com.pandas_dtype(dtype) == DatetimeTZDtype.construct_from_string(dtype)) assert com.pandas_dtype(dtype) == dtype