style: Format long line in test_commands.py for better readability

This commit is contained in:
Paul Gauthier (aider) 2025-03-11 12:18:18 -07:00
parent 9cf4286cee
commit a2bf2e2910

View file

@ -1309,7 +1309,8 @@ class TestCommands(TestCase):
# Check that the tool output shows the correct value with format # Check that the tool output shows the correct value with format
# Use the actual input_value (not normalized) in the assertion # Use the actual input_value (not normalized) in the assertion
mock_tool_output.assert_any_call( mock_tool_output.assert_any_call(
f"Set thinking token budget to {expected_tokens:,} tokens ({input_value.lower()})." f"Set thinking token budget to {expected_tokens:,} tokens"
f" ({input_value.lower()})."
) )
# Test with no value provided - should display current value # Test with no value provided - should display current value