From 5035faeb9d2b381d45c94577bc725cb5ce963771 Mon Sep 17 00:00:00 2001 From: Michele Carignani Date: Fri, 26 Feb 2021 12:10:13 +0100 Subject: [PATCH] fix #34 --- SRV/UELOCSUB/PlatUeLocationSubscription.robot | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/SRV/UELOCSUB/PlatUeLocationSubscription.robot b/SRV/UELOCSUB/PlatUeLocationSubscription.robot index 0b32cb9..cc65754 100644 --- a/SRV/UELOCSUB/PlatUeLocationSubscription.robot +++ b/SRV/UELOCSUB/PlatUeLocationSubscription.robot @@ -29,9 +29,10 @@ TC_MEC_SRV_UELOCSUB_001_OK Create new subscription UserTrackingSubscription Check HTTP Response Status Code Is 201 Check HTTP Response Body Json Schema Is UserTrackingSubscription - Check Result Contains ${response['body']['userTrackingSubscription']} clientCorrelator ${USERTRACKSUB_CLIENT_ID} - Check Result Contains ${response['body']['userTrackingSubscription']} callbackReference ${USERTRACK_NOTIF_CALLBACK_URI} - Check Result Contains ${response['body']['userTrackingSubscription']} address ${USERTRACK_IP_ADDRESS} + # TODO fix related TP + # Check Result Contains ${response['body']['userTrackingSubscription']} clientCorrelator ${USERTRACKSUB_CLIENT_ID} + Should Be Equal As Strings ${response['body']['userTrackingSubscription']['callbackReference']} ${USERTRACK_NOTIF_CALLBACK_URI} + Should Be Equal As Strings ${response['body']['userTrackingSubscription']['address']} ${USERTRACK_IP_ADDRESS} # TODO how to send this? The TP has the IUT doing this immediately. Do we want this or will it be discarded as part of the test? # // MEC 013, clause 7.3.4.3 -- GitLab