fixed test

This commit is contained in:
Paul Gauthier 2023-05-27 06:25:16 -07:00
parent 82e7dcb7ba
commit 3f5e4130ea

View file

@ -1,7 +1,6 @@
import os import os
import tempfile import tempfile
from unittest import TestCase from unittest import TestCase
from unittest.mock import MagicMock
from aider.commands import Commands from aider.commands import Commands
from aider.io import InputOutput from aider.io import InputOutput
@ -16,7 +15,7 @@ class TestCommands(TestCase):
io = InputOutput(pretty=False, yes=True) io = InputOutput(pretty=False, yes=True)
from aider.coder import Coder from aider.coder import Coder
coder = Coder(io) coder = Coder(io, openai_api_key="deadbeef")
commands = Commands(io, coder) commands = Commands(io, coder)
# Call the cmd_add method with 'foo.txt' and 'bar.txt' as a single string # Call the cmd_add method with 'foo.txt' and 'bar.txt' as a single string