Skip to content

Commit e8ba307

Browse files
committed
Improve tests descriptions
Signed-off-by: Leandro Lucarella <[email protected]>
1 parent 3482180 commit e8ba307

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/microgrid/power_distributing/test_battery_distribution_algorithm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ def test_supply_two_batteries_2(self) -> None:
561561

562562
# Test consumption power distribution
563563
def test_consumption_three_batteries_1(self) -> None:
564-
"""Distribute consume power."""
564+
"""Distribute consume power with three batteries with the same capacity."""
565565
capacity: list[Metric] = [Metric(49000), Metric(49000), Metric(49000)]
566566
soc: list[Metric] = [
567567
Metric(80.0, Bound(0, 100)),
@@ -586,7 +586,7 @@ def test_consumption_three_batteries_1(self) -> None:
586586
assert result.remaining_power == approx(0.0)
587587

588588
def test_consumption_three_batteries_2(self) -> None:
589-
"""Distribute consume power."""
589+
"""Distribute consume power with three batteries but one with double the capacity."""
590590
capacity: list[Metric] = [Metric(98000), Metric(49000), Metric(49000)]
591591
soc: list[Metric] = [
592592
Metric(80.0, Bound(0, 100)),

0 commit comments

Comments
 (0)