use a windows compatible regex filename

This commit is contained in:
Paul Gauthier 2023-09-29 14:50:41 -07:00
parent dc19a1fe4b
commit d2acb8e95e

View file

@ -90,7 +90,7 @@ class TestCommands(TestCase):
coder = Coder.create(models.GPT35, None, io) coder = Coder.create(models.GPT35, None, io)
commands = Commands(io, coder) commands = Commands(io, coder)
fname = Path("*.nonexistent") fname = Path("[abc].nonexistent")
# Call the cmd_add method with a non-existent file pattern # Call the cmd_add method with a non-existent file pattern
commands.cmd_add(str(fname)) commands.cmd_add(str(fname))