refactor: Remove unused variable in test_main.py

This commit is contained in:
Paul Gauthier (aider) 2025-03-21 11:05:35 -07:00
parent 8679c425e0
commit 3ad5d75bee

View file

@ -939,7 +939,6 @@ class TestMain(TestCase):
# Test with relative path and git root
git_root = "/path/to/git/root"
rel_path = ".aiderignore"
expected = os.path.join(git_root, rel_path)
self.assertEqual(
resolve_aiderignore_path(rel_path, git_root), str(Path(git_root) / rel_path)
)