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 ebb0e2d commit 91a3c82Copy full SHA for 91a3c82
tests/timeseries/_battery_pool/test_battery_pool_control_methods.py
@@ -150,11 +150,9 @@ def _assert_report(
150
assert report.target_power == (
151
Power.from_watts(power) if power is not None else None
152
)
153
- # pylint: disable=protected-access
154
assert report.bounds is not None
155
assert report.bounds.lower == Power.from_watts(lower)
156
assert report.bounds.upper == Power.from_watts(upper)
157
- # pylint: enable=protected-access
158
if expected_result_pred is not None:
159
assert report.distribution_result is not None
160
assert expected_result_pred(report.distribution_result)
0 commit comments