diff --git a/tests/test_sensor.py b/tests/test_sensor.py index 25bbb4a3..7cfdccdd 100644 --- a/tests/test_sensor.py +++ b/tests/test_sensor.py @@ -20,6 +20,7 @@ from zigpy.zcl import Cluster from zigpy.zcl.clusters import general, homeautomation, hvac, measurement, smartenergy from zigpy.zcl.clusters.manufacturer_specific import ManufacturerSpecificCluster +from zigpy.zcl.foundation import ReportingConfig from tests.common import ( SIG_EP_INPUT, @@ -1244,6 +1245,9 @@ def __init__(self, *args, **kwargs) -> None: unit=UnitOfMass.GRAMS, translation_key="last_feeding_size", fallback_name="Last feeding size", + reporting_config=ReportingConfig( + min_interval=0, max_interval=60, reportable_change=1 + ), ) .add_to_registry() )