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 66d7e7d commit 71a41e9Copy full SHA for 71a41e9
tests/test_wake_losses.py
@@ -42,5 +42,10 @@ def test_get_wind_efficiency_curve_one(self):
42
def test_get_wind_efficiency_curve_all(self):
43
"""Test get_wind_efficiency_curve() for all curves."""
44
wec_all_sum = int(get_wind_efficiency_curve('all').sum().round().sum())
45
- print(wec_all_sum)
46
assert wec_all_sum == 12145
+
47
+ def test_get_wind_efficiency_curve_list(self):
48
+ """Test get_wind_efficiency_curve() for all curves."""
49
+ wec_all_sum = int(get_wind_efficiency_curve(
50
+ ['dena_mean', 'knorr_mean']).sum().round().sum())
51
+ assert wec_all_sum == 3568
0 commit comments