Skip to content

Commit 2c7e79d

Browse files
Remove test - from 0.20.0 PR slipped in
1 parent 5110eaf commit 2c7e79d

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

pandas/tests/series/test_missing.py

-17
Original file line numberDiff line numberDiff line change
@@ -909,23 +909,6 @@ def test_spline_error(self):
909909
with tm.assertRaises(ValueError):
910910
s.interpolate(method='spline', order=0)
911911

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-
index=pd.to_timedelta([1, 2, 3]))
919-
assert_series_equal(result, expected)
920-
921-
# test for non uniform spacing
922-
df = Series([1, np.nan, 3],
923-
index=pd.to_timedelta([1, 2, 4]))
924-
result = df.interpolate(method='time')
925-
expected = Series([1., 1.666667, 3.],
926-
index=pd.to_timedelta([1, 2, 4]))
927-
assert_series_equal(result, expected)
928-
929912

930913
if __name__ == '__main__':
931914
import nose

0 commit comments

Comments
 (0)