Skip to content

Commit e23b9a0

Browse files
author
Daniel Saxton
committed
Fix merge
1 parent 2e9ece9 commit e23b9a0

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

pandas/tests/dtypes/test_common.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -709,14 +709,6 @@ def test__is_dtype_type(input_param, result):
709709
assert com._is_dtype_type(input_param, lambda tipo: tipo == result)
710710

711711

712-
@ignore_sparse_warning
713-
def test__is_dtype_type_sparse():
714-
ser = pd.SparseSeries([1, 2], dtype="int32")
715-
result = np.dtype("int32")
716-
assert com._is_dtype_type(ser, lambda tipo: tipo == result)
717-
assert com._is_dtype_type(ser.dtype, lambda tipo: tipo == result)
718-
719-
720712
@pytest.mark.parametrize("val", [np.datetime64("NaT")])
721713
@pytest.mark.parametrize("typ", [np.int8, np.int16, np.int32, np.int64])
722714
def test_astype_nansafe(val, typ):

0 commit comments

Comments
 (0)