From a2bf2e29100371debdc1e9aba29b8eb0d7ec032e Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 11 Mar 2025 12:18:18 -0700 Subject: [PATCH] style: Format long line in test_commands.py for better readability --- tests/basic/test_commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/basic/test_commands.py b/tests/basic/test_commands.py index 84d152127..286bd30ed 100644 --- a/tests/basic/test_commands.py +++ b/tests/basic/test_commands.py @@ -1309,7 +1309,8 @@ class TestCommands(TestCase): # Check that the tool output shows the correct value with format # Use the actual input_value (not normalized) in the assertion 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