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 7c41431 commit 57de3efCopy full SHA for 57de3ef
pandas/tests/test_generic.py
@@ -1406,23 +1406,6 @@ def test_no_order(self):
1406
s.interpolate(method='polynomial')
1407
with tm.assertRaises(ValueError):
1408
s.interpolate(method='spline')
1409
-
1410
-<<<<<<< HEAD
1411
1412
-=======
1413
- # GH #10633
1414
- def test_order_spline_interpolation(self):
1415
- tm._skip_if_no_scipy()
1416
- np.random.seed(1)
1417
- s = Series(np.arange(10)**2)
1418
- s[np.random.randint(0,9,3)] = np.nan
1419
- result1 = s.interpolate(method='spline', order=1)
1420
- expected1 = s.interpolate(method='spline', order=1)
1421
- assert_series_equal(result1, expected1)
1422
->>>>>>> 5a5407e... updating examples and the bug fix
1423
1424
->>>>>>> 027a5e7... Updating based on feedback
1425
1426
1427
def test_spline(self):
1428
tm._skip_if_no_scipy()
0 commit comments