Skip to content

Commit 9fd58f2

Browse files
committed
Remove deprecated Slepian test
Partially addresses pandas-devgh-21137.
1 parent 791de95 commit 9fd58f2

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pandas/tests/test_window.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -1079,8 +1079,7 @@ def test_cmov_window_special(self, win_types_special):
10791079
kwds = {
10801080
'kaiser': {'beta': 1.},
10811081
'gaussian': {'std': 1.},
1082-
'general_gaussian': {'power': 2., 'width': 2.},
1083-
'slepian': {'width': 0.5}}
1082+
'general_gaussian': {'power': 2., 'width': 2.}}
10841083

10851084
vals = np.array([6.95, 15.21, 4.72, 9.12, 13.81, 13.49, 16.68, 9.48,
10861085
10.63, 14.48])
@@ -1090,8 +1089,6 @@ def test_cmov_window_special(self, win_types_special):
10901089
13.65671, 12.01002, np.nan, np.nan],
10911090
'general_gaussian': [np.nan, np.nan, 9.85011, 10.71589, 11.73161,
10921091
13.08516, 12.95111, 12.74577, np.nan, np.nan],
1093-
'slepian': [np.nan, np.nan, 9.81073, 10.89359, 11.70284, 12.88331,
1094-
12.96079, 12.77008, np.nan, np.nan],
10951092
'kaiser': [np.nan, np.nan, 9.86851, 11.02969, 11.65161, 12.75129,
10961093
12.90702, 12.83757, np.nan, np.nan]
10971094
}

0 commit comments

Comments
 (0)