Skip to content

Commit 57de3ef

Browse files
committed
TST: Changes in test
1 parent 7c41431 commit 57de3ef

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

pandas/tests/test_generic.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1406,23 +1406,6 @@ def test_no_order(self):
14061406
s.interpolate(method='polynomial')
14071407
with tm.assertRaises(ValueError):
14081408
s.interpolate(method='spline')
1409-
1410-
<<<<<<< HEAD
1411-
<<<<<<< HEAD
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-
14261409

14271410
def test_spline(self):
14281411
tm._skip_if_no_scipy()

0 commit comments

Comments
 (0)