Skip to content

Commit 4476828

Browse files
committed
Fix names
1 parent 11bd789 commit 4476828

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python_testing/TC_MWOCTRL_2_2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ async def test_TC_MWOCTRL_2_2(self):
130130
powerStepValue = await self.read_mwoctrl_attribute_expect_success(endpoint=endpoint, attribute=attributes.PowerStep)
131131
asserts.assert_greater_equal(powerStepValue, 1, "PowerStep is less than 1")
132132
asserts.assert_less_equal(powerStepValue, maxPowerValue, "PowerStep is greater than MaxPower")
133-
asserts.assert_true((MaxPower - MinPower) % PowerStep == 0, "PowerStep is not correct for MaxPower - MinPower")
133+
asserts.assert_true((maxPowerValue - minPowerValue) % powerStepValue == 0, "PowerStep is not correct for MaxPower - MinPower")
134134
logging.info("PowerStep is %s" % powerStepValue)
135135

136136
self.step(8)

0 commit comments

Comments
 (0)