Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
rbultman committed May 3, 2024
1 parent 82160dc commit 4a87cc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python_testing/TC_DISHM_1_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ async def test_TC_DISHM_1_2(self):
except AttributeError:
modeTags = Clusters.DishwasherMode.Enums.ModeTag

normal_present = false
normal_present = False
for m in supported_modes:
# need at least 1 mode tag entry
asserts.assert_greater(len(m.modeTags, 0, "Must have at least one mode tag."))
asserts.assert_greater(len(m.modeTags), 0, "Must have at least one mode tag.")
for t in m.modeTags:
# value can't exceed 16 bits
asserts.assert_true(t.value <= 0xFFFF, "Tag value is > 16 bits")
Expand Down

0 comments on commit 4a87cc7

Please sign in to comment.