From 5f4fc06abc336274279330a4577fb9a736548652 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Mon, 12 Aug 2024 14:34:53 -0700 Subject: [PATCH] say yes, so the test attempts to add --- tests/basic/test_coder.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/basic/test_coder.py b/tests/basic/test_coder.py index 488be73f6..2a0be1a28 100644 --- a/tests/basic/test_coder.py +++ b/tests/basic/test_coder.py @@ -192,8 +192,9 @@ class TestCoder(unittest.TestCase): def test_check_for_file_mentions_read_only(self): with GitTemporaryDirectory(): io = InputOutput( - pretty=False, yes=False - ) # Set yes=False to simulate user not confirming + pretty=False, + yes=True, + ) coder = Coder.create(self.GPT35, None, io) fname = Path("readonly_file.txt")