mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-21 21:04:59 +00:00
cleanup cmd_drop test
This commit is contained in:
parent
e42a7caf1b
commit
57a1aafdfd
2 changed files with 2 additions and 4 deletions
|
@ -609,13 +609,13 @@ class Commands:
|
||||||
|
|
||||||
filenames = parse_quoted_filenames(args)
|
filenames = parse_quoted_filenames(args)
|
||||||
for word in filenames:
|
for word in filenames:
|
||||||
# Handle read-only files separately
|
# Handle read-only files separately, without glob_filtered_to_repo
|
||||||
read_only_matched = [f for f in self.coder.abs_read_only_fnames if word in f]
|
read_only_matched = [f for f in self.coder.abs_read_only_fnames if word in f]
|
||||||
|
|
||||||
if read_only_matched:
|
if read_only_matched:
|
||||||
for matched_file in read_only_matched:
|
for matched_file in read_only_matched:
|
||||||
self.coder.abs_read_only_fnames.remove(matched_file)
|
self.coder.abs_read_only_fnames.remove(matched_file)
|
||||||
self.io.tool_output(f"Removed read-only file {matched_file} from the chat")
|
self.io.tool_output(f"Removed read-only file {matched_file} from the chat")
|
||||||
continue
|
|
||||||
|
|
||||||
matched_files = self.glob_filtered_to_repo(word)
|
matched_files = self.glob_filtered_to_repo(word)
|
||||||
|
|
||||||
|
|
|
@ -779,8 +779,6 @@ class TestCommands(TestCase):
|
||||||
# Test dropping the external read-only file
|
# Test dropping the external read-only file
|
||||||
commands.cmd_drop(Path(external_file_path).name)
|
commands.cmd_drop(Path(external_file_path).name)
|
||||||
|
|
||||||
print(coder.abs_read_only_fnames)
|
|
||||||
|
|
||||||
# Check if the file was removed from abs_read_only_fnames
|
# Check if the file was removed from abs_read_only_fnames
|
||||||
self.assertFalse(
|
self.assertFalse(
|
||||||
any(
|
any(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue