mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-24 14:25:00 +00:00
style: fix line continuation formatting in test file
This commit is contained in:
parent
94396070e8
commit
460311d49e
1 changed files with 4 additions and 2 deletions
|
@ -753,8 +753,10 @@ class TestCommands(TestCase):
|
||||||
os.unlink(external_file_path)
|
os.unlink(external_file_path)
|
||||||
|
|
||||||
def test_cmd_save_and_load_with_multiple_external_files(self):
|
def test_cmd_save_and_load_with_multiple_external_files(self):
|
||||||
with tempfile.NamedTemporaryFile(mode="w", delete=False) as external_file1, \
|
with (
|
||||||
tempfile.NamedTemporaryFile(mode="w", delete=False) as external_file2:
|
tempfile.NamedTemporaryFile(mode="w", delete=False) as external_file1,
|
||||||
|
tempfile.NamedTemporaryFile(mode="w", delete=False) as external_file2,
|
||||||
|
):
|
||||||
external_file1.write("External file 1 content")
|
external_file1.write("External file 1 content")
|
||||||
external_file2.write("External file 2 content")
|
external_file2.write("External file 2 content")
|
||||||
external_file1_path = external_file1.name
|
external_file1_path = external_file1.name
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue