From b0f573bde355c3660e72a30f08901a89dc6bad62 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 18 May 2023 17:31:00 -0700 Subject: [PATCH] Refactor IO instantiation in test_commands.py. --- tests/test_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_commands.py b/tests/test_commands.py index fdbf91da5..da65fa714 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(pretty=False, yes=True, input_history_file="", chat_history_file="") + io = IO(pretty=False, yes=True) coder = Coder(root=tmpdir) commands = Commands(io, coder)