diff --git a/tests/unit_test/data_processor/data_processor_test.py b/tests/unit_test/data_processor/data_processor_test.py index 85834344d..3f22d9f28 100644 --- a/tests/unit_test/data_processor/data_processor_test.py +++ b/tests/unit_test/data_processor/data_processor_test.py @@ -14457,6 +14457,9 @@ def test_save_content_with_gpt_feature_disabled(self): processor = CognitionDataProcessor() bot = 'test' user = 'testUser' + settings = BotSettings.objects(bot=bot).get() + settings.llm_settings = LLMSettings(enable_faq=False) + settings.save() collection = "Bot" content = 'A bot, short for robot, is a program or software application designed to automate certain tasks or ' \ 'perform specific functions, usually in an automated or semi-automated manner. Bots can be programmed' \