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 d34f2ba commit a96c5bbCopy full SHA for a96c5bb
tests/test_modelchain.py
@@ -283,8 +283,6 @@ def test_run_model(self):
283
assert_series_equal(test_mc.power_output, power_output_exp)
284
285
# Test weather dictionary with numpy.arrays
286
- power_output_exp = pd.Series(data=[567683.92454, 1485556.96435],
287
- index=[1, 2], name='feedin_wind_turbine')
288
test_mc.run_model(weather_arr, data_height)
289
power_output_exp = [567683.924536, 1485556.964347] # TODO: Output should be np.array
290
assert_allclose(test_mc.power_output, power_output_exp)
0 commit comments