Skip to content

Commit

Permalink
Use the skip_test method when skipping a test
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterC1965 committed Sep 17, 2024
1 parent 7fcd47c commit 0f52dbf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/python_testing/TC_WHM_2_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,10 @@ class CommonCodes(Enum):
asserts.assert_true(current_mode == old_current_mode, "CurrentMode changed after failed ChangeToMode command!")

else:
self.step(5)
self.step(6)
self.step(7)
self.step(8)
self.skip_step(5)
self.skip_step(6)
self.skip_step(7)
self.skip_step(8)

self.step(9)
if self.is_ci:
Expand Down

0 comments on commit 0f52dbf

Please sign in to comment.