diff options
author | Ritu Sood <Ritu.Sood@intel.com> | 2020-04-23 21:48:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-04-23 21:48:53 +0000 |
commit | 7e20d29b2d82f4ebbe347b7ed39a1c5d51752314 (patch) | |
tree | ae767627445355986dc59860a9d05af287eb2be9 /src/orchestrator/api | |
parent | 334322f5995394dfa6a948101064634eaaf5f0b5 (diff) | |
parent | 6e0b4df46f51f9793f2d88626234edaaf9992403 (diff) |
Merge "Added intentResolver"
Diffstat (limited to 'src/orchestrator/api')
-rw-r--r-- | src/orchestrator/api/add_intents_handler.go | 1 | ||||
-rw-r--r-- | src/orchestrator/api/composite_profilehandler_test.go | 2 | ||||
-rw-r--r-- | src/orchestrator/api/projecthandler_test.go | 4 |
3 files changed, 3 insertions, 4 deletions
diff --git a/src/orchestrator/api/add_intents_handler.go b/src/orchestrator/api/add_intents_handler.go index fbf9007d..ac8b400d 100644 --- a/src/orchestrator/api/add_intents_handler.go +++ b/src/orchestrator/api/add_intents_handler.go @@ -94,7 +94,6 @@ func (h intentHandler) getIntentByNameHandler(w http.ResponseWriter, r *http.Req return } - mapOfIntents, err := h.client.GetIntentByName(iN, p, ca, v, di) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) diff --git a/src/orchestrator/api/composite_profilehandler_test.go b/src/orchestrator/api/composite_profilehandler_test.go index 42b9b3a1..ec3ec24b 100644 --- a/src/orchestrator/api/composite_profilehandler_test.go +++ b/src/orchestrator/api/composite_profilehandler_test.go @@ -105,7 +105,7 @@ func Test_compositeProfileHandler_createHandler(t *testing.T) { cProfClient: &mockCompositeProfileManager{ //Items that will be returned by the mocked Client Items: []moduleLib.CompositeProfile{ - moduleLib.CompositeProfile{ + { Metadata: moduleLib.CompositeProfileMetadata{ Name: "testCompositeProfile", Description: "Test CompositeProfile used for unit testing", diff --git a/src/orchestrator/api/projecthandler_test.go b/src/orchestrator/api/projecthandler_test.go index 5e820aa2..0212e57a 100644 --- a/src/orchestrator/api/projecthandler_test.go +++ b/src/orchestrator/api/projecthandler_test.go @@ -95,7 +95,7 @@ func TestProjectCreateHandler(t *testing.T) { projectClient: &mockProjectManager{ //Items that will be returned by the mocked Client Items: []moduleLib.Project{ - moduleLib.Project{ + { MetaData: moduleLib.ProjectMetaData{ Name: "testProject", Description: "Test Project used for unit testing", @@ -163,7 +163,7 @@ func TestProjectGetHandler(t *testing.T) { name: "testProject", projectClient: &mockProjectManager{ Items: []moduleLib.Project{ - moduleLib.Project{ + { MetaData: moduleLib.ProjectMetaData{ Name: "testProject", Description: "Test Project used for unit testing", |