Skip to content

Commit

Permalink
AutoTest: Fix Reporting of target
Browse files Browse the repository at this point in the history
  • Loading branch information
lthall committed Jul 17, 2024
1 parent 8c6999d commit 2abae92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tools/autotest/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -6651,7 +6651,7 @@ def wait_and_maintain_range(self,
if minimum_duration >= timeout:
raise ValueError("minimum_duration >= timeout")
if print_diagnostics_as_target_not_range:
self.progress("Waiting for %s=%.02f with accuracy %.02f" % (value_name, target + accuracy, accuracy))
self.progress("Waiting for %s=%.02f with accuracy %.02f" % (value_name, target, accuracy))
else:
self.progress("Waiting for %s between (%s) and (%s)" % (value_name, str(minimum), str(maximum)))
last_print_time = 0
Expand Down Expand Up @@ -6682,7 +6682,7 @@ def wait_and_maintain_range(self,
(value_name,
last_value,
want_or_got,
target + accuracy,
target,
accuracy,
achieved_duration_bit)
)
Expand Down

0 comments on commit 2abae92

Please sign in to comment.