We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5110eaf commit 2c7e79dCopy full SHA for 2c7e79d
pandas/tests/series/test_missing.py
@@ -909,23 +909,6 @@ def test_spline_error(self):
909
with tm.assertRaises(ValueError):
910
s.interpolate(method='spline', order=0)
911
912
- def test_interp_timedelta64(self):
913
- # GH 6424
914
- df = Series([1, np.nan, 3],
915
- index=pd.to_timedelta([1, 2, 3]))
916
- result = df.interpolate(method='time')
917
- expected = Series([1., 2., 3.],
918
919
- assert_series_equal(result, expected)
920
-
921
- # test for non uniform spacing
922
923
- index=pd.to_timedelta([1, 2, 4]))
924
925
- expected = Series([1., 1.666667, 3.],
926
927
928
929
930
if __name__ == '__main__':
931
import nose
0 commit comments