Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
cecille authored Apr 11, 2024
1 parent 6f9bef7 commit 320b337
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python_testing/TC_TMP_2_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ async def test_TC_TMP_2_1(self):

self.step(5)
if min_measured_value != NullValue:
asserts.assert_greater_equal(min_measured_value, -27315, "")
asserts.assert_less(min_measured_value, max_bound)
asserts.assert_greater_equal(min_measured_value, -27315, "MinMeasuredValue is out of range")
asserts.assert_less(min_measured_value, max_bound, "MinMeasuredValue is out of range")
else:
self.mark_current_step_skipped()

Expand Down

0 comments on commit 320b337

Please sign in to comment.