File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
service/src/intTest/java/uk/nhs/adaptors/gp2gp/ehr Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ public void When_EhrContinueThrowsException_Expect_EhrExtractStatusNotUpdated()
8282 Exception exception = assertThrows (UnrecognisedInteractionIdException .class ,
8383 () -> ehrExtractRequestHandler .handleContinue (conversationId , CONTINUE_ACKNOWLEDGEMENT ));
8484
85- assertThat (exception .getMessage ()).isEqualTo ("Received an unrecognized Continue message with conversation_id : "
85+ assertThat (exception .getMessage ()).isEqualTo ("Received an unrecognized Continue message with conversationId : "
8686 + conversationId );
8787 verify (taskDispatcher , never ()).createTask (any ());
8888 }
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ void When_EhrStatusWithExceededTimeout_Expect_EhrStatusShouldNotBeUpdated() {
9292 ehrExtractStatusServiceSpy .updateEhrExtractStatusAck (inProgressConversationId , ehrReceivedAcknowledgement );
9393
9494 verify (logger , times (1 ))
95- .warn ("Received an ACK message with conversation_id : {}, "
95+ .warn ("Received an ACK message with conversationId : {}, "
9696 + "but it is being ignored because the EhrExtract has already been marked as failed "
9797 + "from not receiving an acknowledgement from the requester in time." ,
9898 inProgressConversationId );
You can’t perform that action at this time.
0 commit comments