mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 08:44:59 +00:00
refactor: Remove unused result variable in test_verify_ssl_setting_before_cache_loading
This commit is contained in:
parent
aaa3a8ebda
commit
e5a85108d7
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ class TestModelInfoManager(TestCase):
|
|||
# Force cache update by making it look expired
|
||||
with patch("time.time", return_value=9999999999):
|
||||
# This should trigger _update_cache
|
||||
result = self.manager.get_model_from_cached_json_db("test_model")
|
||||
self.manager.get_model_from_cached_json_db("test_model")
|
||||
|
||||
# Verify _update_cache was called with verify=False
|
||||
mock_get.assert_called_with(self.manager.MODEL_INFO_URL, timeout=5, verify=False)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue