mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 00:35:00 +00:00
fix: Check for testcase key in results
This commit is contained in:
parent
2d32f77ed0
commit
dddf192e5a
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ def load_results(dirname):
|
|||
error = False
|
||||
try:
|
||||
results = json.loads(fname.read_text())
|
||||
error = 'testcase' not in results
|
||||
error = "testcase" not in results
|
||||
if not error:
|
||||
# Add language info to results
|
||||
lang = fname.parts[-5] # Get language from path
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue