refactor(test_websocket.py): change sender field to is_bot field in chat history tests
This commit is contained in:
parent
42a17e3aaf
commit
dc72f2e52f
1 changed files with 2 additions and 2 deletions
|
|
@ -28,7 +28,7 @@ def test_chat_history(client: TestClient):
|
|||
# Receive the response from the server
|
||||
response = websocket.receive_json()
|
||||
assert json.loads(response) == {
|
||||
"sender": "bot",
|
||||
"is_bot": True,
|
||||
"message": None,
|
||||
"intermediate_steps": "",
|
||||
"type": "start",
|
||||
|
|
@ -40,7 +40,7 @@ def test_chat_history(client: TestClient):
|
|||
# Receive the response from the server
|
||||
response = websocket.receive_json()
|
||||
assert json.loads(response) == {
|
||||
"sender": "bot",
|
||||
"is_bot": True,
|
||||
"message": "Hello, I'm a mock response!",
|
||||
"intermediate_steps": "",
|
||||
"type": "end",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue