From 27a1d9e60f6710dc57b0e9d3647f8859ed97b0dd Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 9 Aug 2024 16:41:22 -0400 Subject: [PATCH] style: Fix linter issues in test_main.py --- tests/basic/test_main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/basic/test_main.py b/tests/basic/test_main.py index e4dc6b58e..d300c7ccf 100644 --- a/tests/basic/test_main.py +++ b/tests/basic/test_main.py @@ -401,12 +401,12 @@ class TestMain(TestCase): with GitTemporaryDirectory(): test_file = "test_file.txt" Path(test_file).touch() - + coder = main( ["--read", test_file, "--exit", "--yes"], input=DummyInput(), output=DummyOutput(), return_coder=True, ) - + self.assertIn(str(Path(test_file).resolve()), coder.abs_read_only_fnames)