From 131f537f6c217aaf5c52d7d3ff7e2431172c246e Mon Sep 17 00:00:00 2001 From: Nicholas Albion Date: Thu, 5 Oct 2023 12:38:26 +1100 Subject: [PATCH] updated `test_create_development_plan()` --- pilot/helpers/agents/test_TechLead.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pilot/helpers/agents/test_TechLead.py b/pilot/helpers/agents/test_TechLead.py index 4ca72e7..d738a45 100644 --- a/pilot/helpers/agents/test_TechLead.py +++ b/pilot/helpers/agents/test_TechLead.py @@ -58,7 +58,7 @@ The development process will include the creation of user stories and tasks, bas mock_questionary = MockQuestionary(['', '', 'no']) - with patch('utils.llm_connection.questionary', mock_questionary): + with patch('utils.questionary.questionary', mock_questionary): # When development_plan = self.techLead.create_development_plan()