fix: Increase max attempts and improve operator validation in simple equations

This commit is contained in:
Andreas Koepf 2025-01-24 19:15:27 +01:00 committed by Andreas Koepf (aider)
parent 111f172c3f
commit 6a96c4f15a
2 changed files with 2 additions and 2 deletions

View file

@ -133,4 +133,4 @@ def test_simple_equations_operators():
# Verify only allowed operators are used
for op in "+-*":
if op in equation:
assert op in operators
assert op in operators, str(equation)