From 4e99aabcb2f5c6201949432687c351e546ec63a5 Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Sat, 14 Jun 2025 20:57:14 +0200 Subject: [PATCH] Minor Code Comment Corrections and Clarifications (#9129) --- evaluation/benchmarks/browsing_delegation/run_infer.py | 2 +- tests/unit/resolver/gitlab/test_gitlab_send_pull_request.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/evaluation/benchmarks/browsing_delegation/run_infer.py b/evaluation/benchmarks/browsing_delegation/run_infer.py index 2f0e883ef5..c3990f9e01 100644 --- a/evaluation/benchmarks/browsing_delegation/run_infer.py +++ b/evaluation/benchmarks/browsing_delegation/run_infer.py @@ -144,7 +144,7 @@ if __name__ == '__main__': llm_config = None if args.llm_config: llm_config = get_llm_config_arg(args.llm_config) - # modify_params must be False for evaluation purpose, for reproducibility and accurancy of results + # modify_params must be False for evaluation purpose, for reproducibility and accuracy of results llm_config.modify_params = False if llm_config is None: diff --git a/tests/unit/resolver/gitlab/test_gitlab_send_pull_request.py b/tests/unit/resolver/gitlab/test_gitlab_send_pull_request.py index 5f890a4368..c920d4a096 100644 --- a/tests/unit/resolver/gitlab/test_gitlab_send_pull_request.py +++ b/tests/unit/resolver/gitlab/test_gitlab_send_pull_request.py @@ -483,7 +483,7 @@ def test_send_pull_request_with_reviewer( ), # PR creation ] - # Mock request reviwers response + # Mock request reviewers response mock_put.side_effect = [ MagicMock(status_code=200), # Reviewer request ]