File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ def access_conversation_endpoint_get_specific(
5555 "I use REST API conversation endpoint with conversation_id from above using HTTP DELETE method"
5656)
5757def access_conversation_endpoint_delete (context : Context ) -> None :
58- """Send GET HTTP request to tested service for conversation/{conversation_id}."""
58+ """Send DELETE HTTP request to tested service for conversation/{conversation_id}."""
5959 assert (
6060 context .response_data ["conversation_id" ] is not None
6161 ), "conversation id not stored"
@@ -79,7 +79,7 @@ def access_conversation_endpoint_delete(context: Context) -> None:
7979def access_conversation_endpoint_delete_specific (
8080 context : Context , conversation_id : str
8181) -> None :
82- """Send GET HTTP request to tested service for conversation/{conversation_id}."""
82+ """Send DELETE HTTP request to tested service for conversation/{conversation_id}."""
8383 endpoint = "conversations"
8484 base = f"http://{ context .hostname } :{ context .port } "
8585 path = f"{ context .api_prefix } /{ endpoint } /{ conversation_id } " .replace ("//" , "/" )
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ def check_streamed_fragments_in_response(context: Context) -> None:
143143
144144@then ("The streamed response is equal to the full response" )
145145def compare_streamed_responses (context : Context ) -> None :
146- """Check that streamed reponse is equal to complete response.
146+ """Check that streamed response is equal to complete response.
147147
148148 First checks that the HTTP response exists and contains a
149149 "response" field. Do this check also for the complete response
You can’t perform that action at this time.
0 commit comments