diff --git a/src/python_testing/TC_MWOCTRL_2_2.py b/src/python_testing/TC_MWOCTRL_2_2.py index 4a01be3a8fca82..ae496f6a669387 100644 --- a/src/python_testing/TC_MWOCTRL_2_2.py +++ b/src/python_testing/TC_MWOCTRL_2_2.py @@ -130,7 +130,8 @@ async def test_TC_MWOCTRL_2_2(self): powerStepValue = await self.read_mwoctrl_attribute_expect_success(endpoint=endpoint, attribute=attributes.PowerStep) asserts.assert_greater_equal(powerStepValue, 1, "PowerStep is less than 1") asserts.assert_less_equal(powerStepValue, maxPowerValue, "PowerStep is greater than MaxPower") - asserts.assert_true((maxPowerValue - minPowerValue) % powerStepValue == 0, "PowerStep is not correct for MaxPower - MinPower") + asserts.assert_true((maxPowerValue - minPowerValue) % powerStepValue == + 0, "PowerStep is not correct for MaxPower - MinPower") logging.info("PowerStep is %s" % powerStepValue) self.step(8)