From e3a3a55dd58750ede1f3465d36a5d21a1d38bdf7 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 25 Oct 2024 10:57:03 -0700 Subject: [PATCH] fix: make file paths portable for Windows compatibility in tests --- tests/basic/test_commands.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/basic/test_commands.py b/tests/basic/test_commands.py index ee4fbf082..c430f86b4 100644 --- a/tests/basic/test_commands.py +++ b/tests/basic/test_commands.py @@ -1047,6 +1047,8 @@ class TestCommands(TestCase): ) ) + # ai: these filenames use / so tests fail on windows; fix the one above and below to be portable! + # Test dropping the read-only file using git_root referenced name commands.cmd_drop("subdir/test_read_only_file.txt")