mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-22 13:25:00 +00:00
fix: Use samefile check in test_cmd_read
This commit is contained in:
parent
416fd164d8
commit
427164b0bf
1 changed files with 2 additions and 2 deletions
|
@ -745,13 +745,13 @@ class TestCommands(TestCase):
|
||||||
commands.cmd_read(str(test_file))
|
commands.cmd_read(str(test_file))
|
||||||
|
|
||||||
# Check if the file was added to abs_read_only_fnames
|
# Check if the file was added to abs_read_only_fnames
|
||||||
self.assertIn(str(test_file.resolve()), coder.abs_read_only_fnames)
|
self.assertTrue(any(os.path.samefile(str(test_file.resolve()), fname) for fname in coder.abs_read_only_fnames))
|
||||||
|
|
||||||
# Test dropping the read-only file
|
# Test dropping the read-only file
|
||||||
commands.cmd_drop(str(test_file))
|
commands.cmd_drop(str(test_file))
|
||||||
|
|
||||||
# Check if the file was removed from abs_read_only_fnames
|
# Check if the file was removed from abs_read_only_fnames
|
||||||
self.assertNotIn(str(test_file.resolve()), coder.abs_read_only_fnames)
|
self.assertFalse(any(os.path.samefile(str(test_file.resolve()), fname) for fname in coder.abs_read_only_fnames))
|
||||||
|
|
||||||
def test_cmd_read_with_external_file(self):
|
def test_cmd_read_with_external_file(self):
|
||||||
with tempfile.NamedTemporaryFile(mode="w", delete=False) as external_file:
|
with tempfile.NamedTemporaryFile(mode="w", delete=False) as external_file:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue