From d2acb8e95ef7dce126b90e9e811b300df2f74f4d Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 29 Sep 2023 14:50:41 -0700 Subject: [PATCH] use a windows compatible regex filename --- tests/test_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_commands.py b/tests/test_commands.py index 025d82010..29976a77b 100644 --- a/tests/test_commands.py +++ b/tests/test_commands.py @@ -90,7 +90,7 @@ class TestCommands(TestCase): coder = Coder.create(models.GPT35, None, io) commands = Commands(io, coder) - fname = Path("*.nonexistent") + fname = Path("[abc].nonexistent") # Call the cmd_add method with a non-existent file pattern commands.cmd_add(str(fname))