Skip to content

Commit 6079863

Browse files
committed
TST: Remove dtype parameter validation check
1 parent 9aad38a commit 6079863

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pandas/tests/sparse/test_array.py

-4
Original file line numberDiff line numberDiff line change
@@ -695,10 +695,6 @@ def test_numpy_all(self, data, pos, neg):
695695
out = np.all(SparseArray(data, fill_value=pos))
696696
assert not out
697697

698-
msg = "the 'dtype' parameter is not supported"
699-
tm.assert_raises_regex(ValueError, msg, np.all,
700-
SparseArray(data), dtype=np.int64)
701-
702698
msg = "the 'out' parameter is not supported"
703699
tm.assert_raises_regex(ValueError, msg, np.all,
704700
SparseArray(data), out=out)

0 commit comments

Comments
 (0)