Skip to content

Commit d8e1ab9

Browse files
committed
Fix more failing tests
1 parent 8c60c2f commit d8e1ab9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_system_prompt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ def test_chat_with_model_routing(self, mock_available, mock_chat):
7777
mock_chat.return_value = "result"
7878

7979
chat_with_model(TEST_MODEL, TEST_USER_CONTENT, 'cli', TEST_SYSTEM_PROMPT)
80-
mock_chat.assert_called_once_with(TEST_MODEL, TEST_USER_CONTENT, TEST_SYSTEM_PROMPT, image_files=None)
80+
mock_chat.assert_called_once_with(TEST_MODEL, TEST_USER_CONTENT, system_prompt=TEST_SYSTEM_PROMPT, image_files=None)

0 commit comments

Comments
 (0)