From f9005451fa0d4d963cce6efe06043ee452754eaf Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 29 Oct 2024 13:10:58 -0700 Subject: [PATCH] test: add comment about Windows path separator issue in test_commands.py --- tests/basic/test_commands.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/basic/test_commands.py b/tests/basic/test_commands.py index 70536beef..643937f3b 100644 --- a/tests/basic/test_commands.py +++ b/tests/basic/test_commands.py @@ -694,6 +694,7 @@ class TestCommands(TestCase): # Clean up Path(session_file).unlink() + #ai this test fails on windows because it uses /, fix it! def test_cmd_save_and_load_with_external_file(self): with tempfile.NamedTemporaryFile(mode="w", delete=False) as external_file: external_file.write("External file content")