From 0bf66d985139f02544e0a64cbe9679a5302e80af Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Fri, 17 Nov 2023 18:39:11 -0800 Subject: [PATCH] Fix no notes chat director test with updated no notes message No notes message was updated in commit 118f1143 --- tests/test_openai_chat_director.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_openai_chat_director.py b/tests/test_openai_chat_director.py index a8c85787b..07c4e0d85 100644 --- a/tests/test_openai_chat_director.py +++ b/tests/test_openai_chat_director.py @@ -227,7 +227,7 @@ def test_answer_not_known_using_notes_command(chat_client_no_background, default # Assert assert response.status_code == 200 - assert response_message == prompts.no_notes_found.format() + assert response_message == prompts.no_entries_found.format() # ----------------------------------------------------------------------------------------------------