Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/e2e/features/steps/conversation.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def access_conversation_endpoint_get_specific(
"I use REST API conversation endpoint with conversation_id from above using HTTP DELETE method"
)
def access_conversation_endpoint_delete(context: Context) -> None:
"""Send GET HTTP request to tested service for conversation/{conversation_id}."""
"""Send DELETE HTTP request to tested service for conversation/{conversation_id}."""
assert (
context.response_data["conversation_id"] is not None
), "conversation id not stored"
Expand All @@ -79,7 +79,7 @@ def access_conversation_endpoint_delete(context: Context) -> None:
def access_conversation_endpoint_delete_specific(
context: Context, conversation_id: str
) -> None:
"""Send GET HTTP request to tested service for conversation/{conversation_id}."""
"""Send DELETE HTTP request to tested service for conversation/{conversation_id}."""
endpoint = "conversations"
base = f"http://{context.hostname}:{context.port}"
path = f"{context.api_prefix}/{endpoint}/{conversation_id}".replace("//", "/")
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/features/steps/llm_query_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def check_streamed_fragments_in_response(context: Context) -> None:

@then("The streamed response is equal to the full response")
def compare_streamed_responses(context: Context) -> None:
"""Check that streamed reponse is equal to complete response.
"""Check that streamed response is equal to complete response.

First checks that the HTTP response exists and contains a
"response" field. Do this check also for the complete response
Expand Down
Loading