Skip to content

Commit fe612c8

Browse files
Update tests/unit_battery_cell_voltages.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Amilcar Lucas <amilcar.lucas@iav.de>
1 parent 80b3379 commit fe612c8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/unit_battery_cell_voltages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def test_recommended_min_voltage(self) -> None:
5656
assert isnan(BatteryCell.recommended_cell_voltage("NonExistentChemistry", "Volt per cell min"))
5757

5858
@pytest.mark.parametrize("chem", BatteryCell.chemistries())
59-
def test_voltage_monoticity(self, chem: str) -> None:
59+
def test_voltage_monotonicity(self, chem: str) -> None:
6060
assert BatteryCell.limit_max_voltage(chem) == _recommended_battery_cell_voltages[chem].get("absolute_max")
6161
assert BatteryCell.limit_min_voltage(chem) == _recommended_battery_cell_voltages[chem].get("absolute_min")
6262
assert BatteryCell.limit_max_voltage(chem) >= BatteryCell.recommended_cell_voltage(chem, "Volt per cell max")

0 commit comments

Comments
 (0)