mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-23 22:04:59 +00:00
style: Format long line in test_get_rel_fname method
This commit is contained in:
parent
d8027030b0
commit
15abe6b921
1 changed files with 3 additions and 1 deletions
|
@ -37,7 +37,9 @@ class TestLinter(unittest.TestCase):
|
|||
|
||||
def test_get_rel_fname(self):
|
||||
self.assertEqual(self.linter.get_rel_fname("/test/root/file.py"), "file.py")
|
||||
self.assertEqual(self.linter.get_rel_fname("/other/path/file.py"), "../../other/path/file.py")
|
||||
self.assertEqual(
|
||||
self.linter.get_rel_fname("/other/path/file.py"), "../../other/path/file.py"
|
||||
)
|
||||
|
||||
@patch("subprocess.Popen")
|
||||
def test_run_cmd(self, mock_popen):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue