aboutsummaryrefslogtreecommitdiffstats
path: root/components/core
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2019-01-25 19:13:40 +0000
committerGerrit Code Review <gerrit@onap.org>2019-01-25 19:13:40 +0000
commit6ba4d84b42cc3ed381d16ee72dd6e5864e01dfc4 (patch)
tree9fb35ca26fe7cc26b973fcaaad06b4287e799931 /components/core
parent096e34a0189fd68311ef53ebf4701eb1e43a91ca (diff)
parentc5da036e9c92280f0f3c722f98e7cc17c857284c (diff)
Merge "GRPC 1.18.0 Upgrade."
Diffstat (limited to 'components/core')
-rw-r--r--components/core/src/test/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/utils/BluePrintFileUtilsTest.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/core/src/test/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/utils/BluePrintFileUtilsTest.kt b/components/core/src/test/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/utils/BluePrintFileUtilsTest.kt
index 143c4a848..59a037199 100644
--- a/components/core/src/test/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/utils/BluePrintFileUtilsTest.kt
+++ b/components/core/src/test/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/utils/BluePrintFileUtilsTest.kt
@@ -27,7 +27,7 @@ class BluePrintFileUtilsTest {
@Test
fun testNewBlueprint() = runBlocking {
- val targetPath: String = Paths.get("target").toUri().toURL().path.plus("bp-new-test")
+ val targetPath: String = Paths.get("target").toUri().toURL().path.plus("/bp-new-test")
BluePrintFileUtils.createEmptyBluePrint(targetPath)
}
@@ -36,7 +36,7 @@ class BluePrintFileUtilsTest {
fun testBlueprintCopy() = runBlocking {
val sourcePath: String = "./../model-catalog/blueprint-model/starter-blueprint/baseconfiguration"
- val targetPath: String = Paths.get("target").toUri().toURL().path.plus("bp-copy-test")
+ val targetPath: String = Paths.get("target").toUri().toURL().path.plus("/bp-copy-test")
val targetDir = File(targetPath)
targetDir.deleteOnExit()