Minor Code Comment Corrections and Clarifications (#9129)

This commit is contained in:
kilavvy
2025-06-14 20:57:14 +02:00
committed by GitHub
parent 0c307ea12e
commit 4e99aabcb2
2 changed files with 2 additions and 2 deletions

View File

@@ -144,7 +144,7 @@ if __name__ == '__main__':
llm_config = None llm_config = None
if args.llm_config: if args.llm_config:
llm_config = get_llm_config_arg(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 llm_config.modify_params = False
if llm_config is None: if llm_config is None:

View File

@@ -483,7 +483,7 @@ def test_send_pull_request_with_reviewer(
), # PR creation ), # PR creation
] ]
# Mock request reviwers response # Mock request reviewers response
mock_put.side_effect = [ mock_put.side_effect = [
MagicMock(status_code=200), # Reviewer request MagicMock(status_code=200), # Reviewer request
] ]