File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -116,11 +116,10 @@ def test_linear_extra_interpolation(self):
116116 ** parameters ),
117117 exp_arr )
118118 # requested_height is < indices of data frame
119- exp_output = 3.0
120- parameters ['requested_height' ] = 50
119+ exp_output = 3.5
120+ parameters ['requested_height' ] = 75
121121 assert (linear_extra_interpolation (weather , ** parameters ) ==
122122 exp_output )
123- parameters ['requested_height' ] = 75
124123 exp_series = pd .Series (data = [2.0 , 2.5 , 2.0 ])
125124 assert_series_equal (linear_extra_interpolation (weather_series ,
126125 ** parameters ),
@@ -129,4 +128,3 @@ def test_linear_extra_interpolation(self):
129128 assert_array_equal (linear_extra_interpolation (weather_arr ,
130129 ** parameters ),
131130 exp_arr )
132- # TODO: Check this test
You can’t perform that action at this time.
0 commit comments