From d4103cc27106cbb8470edd88bb2d44d123e5f224 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 29 Oct 2024 13:20:42 -0700 Subject: [PATCH] chore: Remove unused comment in test file --- tests/basic/test_commands.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/basic/test_commands.py b/tests/basic/test_commands.py index f464f8024..71990e2dd 100644 --- a/tests/basic/test_commands.py +++ b/tests/basic/test_commands.py @@ -748,7 +748,6 @@ class TestCommands(TestCase): self.assertTrue(Path(session_file).exists()) with open(session_file, encoding=io.encoding) as f: commands_text = f.read() - # ai: parse the commands_text and check for os.path.samefile()! self.assertIn("/add file1.txt", commands_text) self.assertIn(f"/read-only {external_file_path}", commands_text)