mirror of
https://github.com/Aider-AI/aider
synced 2026-05-05 06:32:04 +02:00
style: Format test_io.py with consistent string quotes and spacing
This commit is contained in:
@@ -296,8 +296,8 @@ class TestInputOutputMultilineMode(unittest.TestCase):
|
||||
# Mock console.print to capture the output
|
||||
with patch.object(io.console, "print") as mock_print:
|
||||
# First call will raise UnicodeEncodeError
|
||||
mock_print.side_effect = [UnicodeEncodeError('utf-8', '', 0, 1, 'invalid'), None]
|
||||
|
||||
mock_print.side_effect = [UnicodeEncodeError("utf-8", "", 0, 1, "invalid"), None]
|
||||
|
||||
io._tool_message(invalid_unicode)
|
||||
|
||||
# Verify that the message was converted to ASCII with replacement
|
||||
|
||||
Reference in New Issue
Block a user