This commit is contained in:
Paul Gauthier 2023-06-01 08:49:55 -07:00
parent 2b07a334cc
commit 4774f0518c

View file

@ -21,8 +21,8 @@ class TestMain(TestCase):
self.tempdir = tempfile.mkdtemp()
os.chdir(self.tempdir)
with patch("aider.main.Coder.check_model_availability") as self.mock_check:
self.mock_check.return_value = True
with patch("aider.main.Coder.check_model_availability") as self.mock_check:
self.mock_check.return_value = True
super().setUp()
def tearDown(self):