From 3d050070242296fbd92ffe0d2f9c808562b18482 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 11 Mar 2025 12:20:47 -0700 Subject: [PATCH] fix: Correct token budget message formatting in test case --- tests/basic/test_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/basic/test_commands.py b/tests/basic/test_commands.py index 286bd30ed..675a8f021 100644 --- a/tests/basic/test_commands.py +++ b/tests/basic/test_commands.py @@ -1310,7 +1310,7 @@ class TestCommands(TestCase): # 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" - f" ({input_value.lower()})." + f" ({input_value})." ) # Test with no value provided - should display current value