Skip to content

Commit

Permalink
Fix wrong attribute used
Browse files Browse the repository at this point in the history
  • Loading branch information
MsRandom committed Dec 4, 2024
1 parent 3bf6706 commit 25f1f7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/testing/benchmarker.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def benchmark_submissions(self, contest: Contest, submissions: dict[Key, Reposit
start_time = perf_counter()
key = choice(self._get_untested_submissions(submissions))
submission = submissions[key]
logger.info(f"Benchmarking submission '{submission.repository_info}' with revision '{submission.revision}'")
logger.info(f"Benchmarking submission '{submission.url}' with revision '{submission.revision}'")
try:
benchmark_output = self._benchmark_submission(contest, inputs, submission)
benchmark = self.compare(contest, benchmark_output, self._stop_flag)
Expand Down

0 comments on commit 25f1f7e

Please sign in to comment.