diff options
Diffstat (limited to 'ms/blueprintsprocessor/functions/resource-resolution/src')
-rw-r--r-- | ms/blueprintsprocessor/functions/resource-resolution/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/resource/resolution/utils/ResourceAssignmentUtilsTest.kt | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/ms/blueprintsprocessor/functions/resource-resolution/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/resource/resolution/utils/ResourceAssignmentUtilsTest.kt b/ms/blueprintsprocessor/functions/resource-resolution/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/resource/resolution/utils/ResourceAssignmentUtilsTest.kt index a358f6a23..3c0af04ff 100644 --- a/ms/blueprintsprocessor/functions/resource-resolution/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/resource/resolution/utils/ResourceAssignmentUtilsTest.kt +++ b/ms/blueprintsprocessor/functions/resource-resolution/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/resource/resolution/utils/ResourceAssignmentUtilsTest.kt @@ -204,16 +204,16 @@ class ResourceAssignmentUtilsTest { outcome, "unexpected outcome returned for list of String" ) - - outcome = prepareResponseNodeForTest( - "mapOfString", "map", "string", - inputMapToTestCollectionOfPrimitiveType - ) - assertEquals( - expectedValueToTesCollectionOfPrimitiveType, - outcome, - "unexpected outcome returned for map of String" - ) + // FIXME("Map is not collection type, It is known complex type") + // outcome = prepareResponseNodeForTest( + // "mapOfString", "map", "string", + // inputMapToTestCollectionOfPrimitiveType + // ) + // assertEquals( + // expectedValueToTesCollectionOfPrimitiveType, + // outcome, + // "unexpected outcome returned for map of String" + // ) } @Test @@ -360,7 +360,7 @@ class ResourceAssignmentUtilsTest { ): JsonNode { val resourceAssignment = when (sourceType) { - "list", "map" -> { + "list" -> { prepareRADataDictionaryCollection(dictionary_source, sourceType, entrySchema) } "string" -> { |