Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rbultman committed Mar 13, 2024
1 parent bc7b0ed commit 033f34e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/python_testing/TC_DISHM_3_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class CommonCodes(Enum):

logging.info("OnMode: %s" % (old_on_mode_dut))

# asserts.assert_true(type_matches(old_on_mode_dut, uint) , "On mode value should be an integer value")
asserts.assert_true(type_matches(old_on_mode_dut, uint) , "On mode value should be an integer value")

if old_on_mode_dut == startup_mode_dut:

Expand All @@ -140,6 +140,7 @@ class CommonCodes(Enum):
self.print_step(8, "Read OnMode attribute")

new_on_mode_dut = await self.read_mode_attribute_expect_success(endpoint=self.endpoint, attribute=attributes.OnMode)
asserts.assert_true(type_matches(new_on_mode_dut, uint) , "On mode value should be an integer value")

logging.info("OnMode: %s" % (new_on_mode_dut))
# There is an issue with the test plan here as new_mode_th cannot be read if step 7 is not executed so I've changed
Expand Down

0 comments on commit 033f34e

Please sign in to comment.