diff --git a/tests/test_commands.py b/tests/test_commands.py index 935c3ba98..8eb6dcd61 100644 --- a/tests/test_commands.py +++ b/tests/test_commands.py @@ -9,7 +9,7 @@ from aider.coder import Coder class TestCommands(unittest.TestCase): def test_cmd_add(self): with tempfile.TemporaryDirectory() as tmpdir: - io = IO() + io = IO(pretty=False, yes=True, input_history_file=None, chat_history_file=None) coder = Coder(root=tmpdir) commands = Commands(io, coder)