smartbulb: Limit brightness range to 1-100 (#829)

The allowed brightness for tested light devices (L530, L900) is [1-100]
instead of [0-100] like it was for some kasa devices.
This commit is contained in:
Teemu R
2024-04-17 13:33:10 +02:00
committed by GitHub
parent 700643d3cf
commit 82d92aeea5
3 changed files with 33 additions and 28 deletions

View File

@@ -16,7 +16,7 @@ async def test_brightness_component(dev: SmartDevice):
# Test getting the value
feature = dev.features["brightness"]
assert isinstance(feature.value, int)
assert feature.value > 0 and feature.value <= 100
assert feature.value > 1 and feature.value <= 100
# Test setting the value
await feature.set_value(10)