From 969cbd831db57c980462b4929aa1c1a8b0b6e7e2 Mon Sep 17 00:00:00 2001
From: reinaortega <miguelangel.reinaortega@etsi.org>
Date: Thu, 26 Jul 2018 10:16:22 +0200
Subject: [PATCH] f_CSE_REG_RET_009 and f_CSE_REG_DEL_004 - make the action
 message clearer

Signed-off-by: reinaortega <miguelangel.reinaortega@etsi.org>
---
 OneM2M_Testcases_CSE_Release_1.ttcn | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/OneM2M_Testcases_CSE_Release_1.ttcn b/OneM2M_Testcases_CSE_Release_1.ttcn
index 5bee6eb..78b14e1 100644
--- a/OneM2M_Testcases_CSE_Release_1.ttcn
+++ b/OneM2M_Testcases_CSE_Release_1.ttcn
@@ -2752,7 +2752,7 @@ module OneM2M_Testcases_CSE_Release_1 {
 					 var template PrimitiveContent v_contentResponse;
 					 var template UtTriggerPrimitive v_utRequest;
 					 var integer v_localResourceIndex := -1;
-					 var universal charstring v_action := __SCOPE__ & ": Please, send a valid RETRIEVE Request containing To set to " & PX_CSE1_ADDRESS;
+					 var universal charstring v_action := __SCOPE__ & ": Please, send a valid RETRIEVE Request for remoteCSE to ";
 	 		
 					 // Test control
 					 if(not(PICS_MN_CSE)) {
@@ -2770,7 +2770,7 @@ module OneM2M_Testcases_CSE_Release_1 {
 					 
 					 //Send Trigger Message
 					 v_utRequest := m_utRetrieve(f_getLocalResourceAddress(vc_localRemoteCseIndex));
- 				     f_sendUtPrimitive(v_utRequest, v_action);
+ 				     f_sendUtPrimitive(v_utRequest, v_action & f_getLocalResourceAddress(vc_localRemoteCseIndex));
 					 
 					 tc_ac.start;
 					 alt {
@@ -3310,7 +3310,7 @@ module OneM2M_Testcases_CSE_Release_1 {
 					var ResponsePrimitive v_response;
 					var integer v_auxInteger;
 					var integer v_localResourceIndex := -1;
-					var universal charstring v_action := __SCOPE__ & ": Please, send a valid DELETE Request containing To set to " & PX_CSE1_ADDRESS;
+					var universal charstring v_action := __SCOPE__ & ": Please, send a valid DELETE Request for remoteCSE to ";
 					
 					//Test control
 					if(not(PICS_MN_CSE)) {
@@ -3328,7 +3328,7 @@ module OneM2M_Testcases_CSE_Release_1 {
 					
 					//Send Trigger Message
 					v_utRequest.requestPrimitive.to_ := f_getLocalResourceAddress(vc_localRemoteCseIndex);
-					f_sendUtPrimitive(v_utRequest, v_action);	
+					f_sendUtPrimitive(v_utRequest, v_action & f_getLocalResourceAddress(vc_localRemoteCseIndex));	
 
 					// Test Body
 					tc_ac.start;
-- 
GitLab