fix(curriculum): fix the health setter test (#65385)

This commit is contained in:
Vîzdoagă Octavio
2026-01-21 09:23:54 +02:00
committed by GitHub
parent 3c4a1588e8
commit e65064a8ea
@@ -260,6 +260,10 @@ You should set `self._health` to the value given to the `health` setter when the
assert char.health == 95
char.health = 1
assert char.health == 1
char.health = 0
assert char.health == 0
char.health = 100
assert char.health == 100
`)})
```