mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 23:05:00 +00:00
style: Fix code formatting in test_main.py
This commit is contained in:
parent
697a8b66ea
commit
f8b80548fd
1 changed files with 3 additions and 1 deletions
|
@ -532,4 +532,6 @@ class TestMain(TestCase):
|
|||
call_args, call_kwargs = MockRepoMap.call_args
|
||||
self.assertEqual(call_args[0], 1024) # Check the first positional argument
|
||||
self.assertEqual(call_args[1], temp_dir) # Check the second positional argument
|
||||
self.assertEqual(call_kwargs.get('refresh'), 'files') # Check the 'refresh' keyword argument
|
||||
self.assertEqual(
|
||||
call_kwargs.get("refresh"), "files"
|
||||
) # Check the 'refresh' keyword argument
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue