Skip to content

Commit

Permalink
Fix names
Browse files Browse the repository at this point in the history
  • Loading branch information
rbultman committed May 8, 2024
1 parent 11bd789 commit 4476828
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python_testing/TC_MWOCTRL_2_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ 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((MaxPower - MinPower) % PowerStep == 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)
Expand Down

0 comments on commit 4476828

Please sign in to comment.