From 70a7a6140a60880168a86391ffd4e7ff728e5dd0 Mon Sep 17 00:00:00 2001 From: Nicholas Albion Date: Mon, 2 Oct 2023 21:06:31 +1100 Subject: [PATCH] fixed test --- pilot/helpers/agents/test_Developer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pilot/helpers/agents/test_Developer.py b/pilot/helpers/agents/test_Developer.py index a7512ba..555df49 100644 --- a/pilot/helpers/agents/test_Developer.py +++ b/pilot/helpers/agents/test_Developer.py @@ -125,7 +125,7 @@ class TestDeveloper: result = self.developer.test_code_changes(monkey, convo) # Then - assert result == {'success': True, 'user_input': 'continue'} + assert result == {'success': True, 'user_input': 'no'} @patch('helpers.cli.execute_command', return_value=('stdout:\n```\n\n```', 'DONE')) @patch('helpers.AgentConvo.get_saved_development_step')