Skip to content

Commit 8c4e5ce

Browse files
author
Your Name
committed
Update yes_always_commands tests
1 parent f991122 commit 8c4e5ce

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/basic/test_coder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -866,7 +866,7 @@ async def test_skip_gitignored_files_on_init(self):
866866
async def test_check_for_urls(self):
867867
io = InputOutput(yes=True)
868868
mock_args = MagicMock()
869-
mock_args.yes_always_commands = False
869+
mock_args.yes_always_commands = True
870870
mock_args.disable_scraping = False
871871
coder = await Coder.create(self.GPT35, None, io=io, args=mock_args)
872872

@@ -1030,7 +1030,7 @@ async def test_detect_urls_enabled(self):
10301030
with GitTemporaryDirectory():
10311031
io = InputOutput(yes=True)
10321032
mock_args = MagicMock()
1033-
mock_args.yes_always_commands = False
1033+
mock_args.yes_always_commands = True
10341034
mock_args.disable_scraping = False
10351035
coder = await Coder.create(self.GPT35, "diff", io=io, detect_urls=True, args=mock_args)
10361036

0 commit comments

Comments
 (0)