Skip to content

Commit

Permalink
Revert "test: add DummyInput and DummyOutput to TestHelp setup"
Browse files Browse the repository at this point in the history
This reverts commit d098a4c.
  • Loading branch information
paul-gauthier committed Oct 4, 2024
1 parent 3b9af69 commit e84de1f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/help/test_help.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import unittest
from unittest.mock import MagicMock

from prompt_toolkit.input import DummyInput
from prompt_toolkit.output import DummyOutput

import aider
from aider.coders import Coder
from aider.commands import Commands
Expand All @@ -15,7 +12,7 @@
class TestHelp(unittest.TestCase):
@classmethod
def setUpClass(cls):
io = InputOutput(pretty=False, yes=True, input=DummyInput(), output=DummyOutput())
io = InputOutput(pretty=False, yes=True)

GPT35 = Model("gpt-3.5-turbo")

Expand Down

0 comments on commit e84de1f

Please sign in to comment.