summaryrefslogtreecommitdiffstats
path: root/ms/controllerblueprints/modules/blueprint-core/src
diff options
context:
space:
mode:
authorAlexis de Talhouët <adetalhouet89@gmail.com>2019-09-02 15:22:48 -0400
committerAlexis de Talhouët <adetalhouet89@gmail.com>2019-09-03 13:04:52 +0000
commit122a42a959de49a0f9fcc817d9e75ab8ef908cf5 (patch)
tree0c1be4b9b89b2bc1e19ffae1088312632e94f78a /ms/controllerblueprints/modules/blueprint-core/src
parentcd29a05ccd4279d7fb740d03bbeee6a0839b287e (diff)
Do not duplicate model types and data dictionaries
Change-Id: I960e9ce040490dea82bd9afa9133ed982fe08d14 Issue-ID: CCSDK-1663 Signed-off-by: Alexis de Talhouët <adetalhouet89@gmail.com>
Diffstat (limited to 'ms/controllerblueprints/modules/blueprint-core/src')
-rw-r--r--ms/controllerblueprints/modules/blueprint-core/src/test/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/service/BluePrintRepoFileServiceTest.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ms/controllerblueprints/modules/blueprint-core/src/test/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/service/BluePrintRepoFileServiceTest.kt b/ms/controllerblueprints/modules/blueprint-core/src/test/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/service/BluePrintRepoFileServiceTest.kt
index ac4fc6aea..47b4f2179 100644
--- a/ms/controllerblueprints/modules/blueprint-core/src/test/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/service/BluePrintRepoFileServiceTest.kt
+++ b/ms/controllerblueprints/modules/blueprint-core/src/test/kotlin/org/onap/ccsdk/cds/controllerblueprints/core/service/BluePrintRepoFileServiceTest.kt
@@ -28,7 +28,7 @@ import kotlin.test.assertNotNull
*/
class BluePrintRepoFileServiceTest {
- private val basePath = "load/model_type"
+ private val basePath = "./../../../../components/model-catalog/definition-type/starter-type"
private val bluePrintRepoFileService = BluePrintRepoFileService(basePath)
@Test
@@ -39,7 +39,7 @@ class BluePrintRepoFileServiceTest {
@Test
fun testGetNodeType() {
- val nodeType = bluePrintRepoFileService.getNodeType("component-resource-assignment")
+ val nodeType = bluePrintRepoFileService.getNodeType("component-resource-resolution")
assertNotNull(nodeType, "Failed to get NodeType from repo")
}