From 6e0b4df46f51f9793f2d88626234edaaf9992403 Mon Sep 17 00:00:00 2001 From: Rajamohan Raj Date: Wed, 15 Apr 2020 18:45:47 +0000 Subject: Added intentResolver IntentResolver shall collect the clusterdetails for each of the app where it needs to be deployed. This shall be called by the instantiation code. Issue-ID: MULTICLOUD-1041 Signed-off-by: Rajamohan Raj Change-Id: I7d29901e46a5349ef502786c187c1c88bea61a12 --- src/orchestrator/api/projecthandler_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/orchestrator/api/projecthandler_test.go') 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", -- cgit 1.2.3-korg