mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 12:24:59 +00:00
fix: Correct indentation in test_no_verify_ssl_sets_model_info_manager test
This commit is contained in:
parent
8e2246ec5c
commit
da1bc19052
1 changed files with 5 additions and 6 deletions
|
@ -699,12 +699,11 @@ class TestMain(TestCase):
|
||||||
|
|
||||||
# Mock fuzzy_match_models to avoid string operations on MagicMock
|
# Mock fuzzy_match_models to avoid string operations on MagicMock
|
||||||
with patch("aider.models.fuzzy_match_models", return_value=[]):
|
with patch("aider.models.fuzzy_match_models", return_value=[]):
|
||||||
|
main(
|
||||||
main(
|
["--no-verify-ssl", "--exit", "--yes"],
|
||||||
["--no-verify-ssl", "--exit", "--yes"],
|
input=DummyInput(),
|
||||||
input=DummyInput(),
|
output=DummyOutput(),
|
||||||
output=DummyOutput(),
|
)
|
||||||
)
|
|
||||||
mock_set_verify_ssl.assert_called_once_with(False)
|
mock_set_verify_ssl.assert_called_once_with(False)
|
||||||
|
|
||||||
def test_pytest_env_vars(self):
|
def test_pytest_env_vars(self):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue