We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a65e98 commit 4bb0ac2Copy full SHA for 4bb0ac2
tests/nat_tests/test_judge_llm_analysis.py
@@ -71,10 +71,10 @@ async def test_processes_non_final_issues(
71
is_final=FinalStatus.FALSE.value,
72
)
73
74
- # Add source code and similar issues to test context building
75
- self.sample_tracker.issues[issue_ids[1]].source_code = {
76
- "test.c": ["int main() { return 0; }"]
77
- }
+ # Add gathered code and similar issues to test context building
+ self.sample_tracker.issues[issue_ids[1]].gathered_code = (
+ "\ncode of test.c file:\nint main() { return 0; }"
+ )
78
self.sample_tracker.issues[issue_ids[1]].similar_known_issues = "Similar issue context"
79
80
# Execution
0 commit comments