diff --git a/tests/test_sensor.py b/tests/test_sensor.py index 9570ceb22..c5fb7f9e6 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, @@ -1246,6 +1247,9 @@ def __init__(self, *args, **kwargs) -> None: divisor=1, multiplier=1, unit=UnitOfMass.GRAMS, + reporting_config=ReportingConfig( + min_interval=0, max_interval=60, reportable_change=1 + ), ) .add_to_registry() )