X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Fcontrol%2Fsdl_restSubsDb_test.go;h=5e1db6025b4e786e5ba9d96b6c0de2d65ec0a009;hb=92c3855b5c2d86a54f1342498a2772a605073e06;hp=3db8a2d94e7f8061581e967f4534b77023ddb356;hpb=afadb6df033657afef927964aa637ba7c8fc0880;p=ric-plt%2Fsubmgr.git diff --git a/pkg/control/sdl_restSubsDb_test.go b/pkg/control/sdl_restSubsDb_test.go index 3db8a2d..5e1db60 100644 --- a/pkg/control/sdl_restSubsDb_test.go +++ b/pkg/control/sdl_restSubsDb_test.go @@ -89,6 +89,7 @@ func CreateRESTSubscription(t *testing.T) *RESTSubscription { t.Log("TEST: Creating REST subscription") restSubscription := &RESTSubscription{} + restSubscription.xAppServiceName = "localhost" restSubscription.xAppRmrEndPoint = "localhost:13560" restSubscription.Meid = "RAN_NAME_1" restSubscription.SubReqOngoing = true @@ -100,6 +101,7 @@ func CreateRESTSubscription(t *testing.T) *RESTSubscription { func PrintRESTSubscriptionData(t *testing.T, restSubs *RESTSubscription) { t.Log("TEST: RESTSubscription data") + t.Logf("TEST: restSubs.xAppServiceName = %v", restSubs.xAppServiceName) t.Logf("TEST: restSubs.xAppRmrEndPoint = %v", restSubs.xAppRmrEndPoint) t.Logf("TEST: restSubs.Meid = %v", restSubs.Meid) t.Logf("TEST: restSubs.InstanceIds = %v", restSubs.InstanceIds)