Commit 7da32514 authored by Job Vranish's avatar Job Vranish
Browse files

fixed some tests that broke on merge

parent fa04fa93
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -287,7 +287,6 @@ void test_KineticConnection_Worker_should_process_unsolicited_response_PDUs(void
    // Prepare the status PDU to be received
    KineticAllocator_NewPDU_ExpectAndReturn(Connection, &Response);
    KineticPDU_ReceiveMain_ExpectAndReturn(&Response, KINETIC_STATUS_SUCCESS);
    KineticPDU_GetStatus_ExpectAndReturn(&Response, KINETIC_STATUS_SUCCESS);
    KineticAllocator_FreePDU_Expect(Connection, &Response);

    KineticOperation_TimeoutOperations_Expect(Connection);
@@ -386,7 +385,6 @@ void test_KineticConnection_Worker_should_process_solicited_response_PDUs(void)
    // Prepare the status PDU to be received
    KineticAllocator_NewPDU_ExpectAndReturn(Connection, &Response);
    KineticPDU_ReceiveMain_ExpectAndReturn(&Response, KINETIC_STATUS_SUCCESS);
    KineticPDU_GetStatus_ExpectAndReturn(&Response, KINETIC_STATUS_SUCCESS);
    KineticOperation_AssociateResponseWithOperation_ExpectAndReturn(&Response, &op);
    KineticPDU_GetValueLength_ExpectAndReturn(&Response, 0);
    KineticPDU_GetStatus_ExpectAndReturn(&Response, KINETIC_STATUS_SUCCESS);
@@ -468,7 +466,6 @@ void test_KineticConnection_Worker_should_process_solicited_response_PDUs_with_V
    // Prepare the status PDU to be received
    KineticAllocator_NewPDU_ExpectAndReturn(Connection, &Response);
    KineticPDU_ReceiveMain_ExpectAndReturn(&Response, KINETIC_STATUS_SUCCESS);
    KineticPDU_GetStatus_ExpectAndReturn(&Response, KINETIC_STATUS_SUCCESS);
    KineticOperation_AssociateResponseWithOperation_ExpectAndReturn(&Response, &op);
    KineticPDU_GetValueLength_ExpectAndReturn(&Response, 83);
    KineticPDU_ReceiveValue_ExpectAndReturn(socket, &entry.value, 83, KINETIC_STATUS_SUCCESS);