Skip to content
Snippets Groups Projects
Commit 73b4dd07 authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

Use of f_getLocalPoA instead of direct URL

parent b63ccd4b
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,7 @@ module OneM2M_Testcases_CSE_Release_3 {
testcase TC_CSE_REG_CRE_012_AE_NL() runs on Tester system CseSystem {
var AeSimu v_ae1 := AeSimu.create("AE1") alive;
var template RequestPrimitive v_create := m_createAe(PX_TS_AE1.appId, omit, omit);
v_create.primitiveContent.aE.nodeLink := "http://127.0.0.1/";
v_create.primitiveContent.aE.nodeLink := f_getLocalPoA(PX_TS_AE1.mcaPortIn);//"http://127.0.0.1/";
v_ae1.start(f_CSE_REG_CRE_012(v_create));
v_ae1.done;
......@@ -246,7 +246,7 @@ module OneM2M_Testcases_CSE_Release_3 {
var template RequestPrimitive v_createRequest := m_createAe(PX_TS_AE1.appId);
var template PrimitiveContent v_contentResponse;
v_createRequest.primitiveContent.aE.nodeLink := "http://127.0.0.1/";
v_createRequest.primitiveContent.aE.nodeLink := f_getLocalPoA(PX_TS_AE1.mcaPortIn);//"http://127.0.0.1/";
 
v_contentResponse.aE := mw_contentAeBase;
v_contentResponse.aE.nodeLink := ?;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment