diff --git a/OneM2M_Testcases_AE_Release_1.ttcn b/OneM2M_Testcases_AE_Release_1.ttcn index 08c00b34b38bf4db7e09f8279aa08829e41dd999..8509904b69fffb73cddcc109c4dce366f476c643 100644 --- a/OneM2M_Testcases_AE_Release_1.ttcn +++ b/OneM2M_Testcases_AE_Release_1.ttcn @@ -2033,15 +2033,15 @@ module OneM2M_Testcases_AE_Release_1 { f_checkCseSimuStatus(); //Test behavior - f_send(e_mca_in_port, m_request(m_notify(f_getLocalResourceAddress(v_resourceIndex)))); + f_send(e_mca_port, m_request(m_notify(f_getLocalResourceAddress(v_resourceIndex)))); tc_ac.start; alt{ - [] mcaPortIn.receive(mw_response(mw_responsePrimitiveOK)) { + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { tc_ac.stop; setverdict(pass, __SCOPE__ & " : Notification response is accepted!"); } - [] mcaPortIn.receive { + [] mcaPort.receive { tc_ac.stop; setverdict(fail, __SCOPE__ & " : Notification response is rejected due to not including mandatory attributes!"); } @@ -2142,15 +2142,15 @@ module OneM2M_Testcases_AE_Release_1 { f_checkCseSimuStatus(); //Test behavior - f_send(e_mca_in_port, m_request(m_notifyAggregatedNotification)); + f_send(e_mca_port, m_request(m_notifyAggregatedNotification)); tc_ac.start; alt{ - [] mcaPortIn.receive(mw_response(mw_responsePrimitiveOK)) { + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { tc_ac.stop; setverdict(pass, __SCOPE__ & " : Notification response is accepted!"); } - [] mcaPortIn.receive { + [] mcaPort.receive { tc_ac.stop; setverdict(fail, __SCOPE__ & " : Notification response is rejected due to not including mandatory attributes!"); }