X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=cmd%2Fvesmgr%2FsubscribexAPPNotifications_test.go;h=1521da3c4bec0c2eed90f59c0e62ceab04276834;hb=refs%2Fchanges%2F53%2F2353%2F2;hp=91aea4e183b5f0b20d8919b8b0c03c64c879c598;hpb=6ffba08cc1c469c1ae04a6819445760ec75653b1;p=ric-plt%2Fvespamgr.git diff --git a/cmd/vesmgr/subscribexAPPNotifications_test.go b/cmd/vesmgr/subscribexAPPNotifications_test.go index 91aea4e..1521da3 100644 --- a/cmd/vesmgr/subscribexAPPNotifications_test.go +++ b/cmd/vesmgr/subscribexAPPNotifications_test.go @@ -57,9 +57,10 @@ func (suite *AppmgrHTTPServerTestSuite) TestSubscribexAppNotifications() { var result map[string]interface{} err := json.Unmarshal([]byte(body), &result) suite.Nil(err) - suite.Equal(5, int(result["maxRetries"].(float64))) - suite.Equal(5, int(result["retryTimer"].(float64))) - suite.Equal("all", result["eventType"].(string)) + data := result["Data"].(map[string]interface{}) + suite.Equal(5, int(data["maxRetries"].(float64))) + suite.Equal(5, int(data["retryTimer"].(float64))) + suite.Equal("all", data["eventType"].(string)) suite.Equal("POST", req.Method) res.Header().Add("Content-Type", "application/json") res.WriteHeader(http.StatusCreated)