diff options
author | Muthuramalingam, Brinda Santh <bs2796@att.com> | 2019-01-23 11:42:13 -0500 |
---|---|---|
committer | Muthuramalingam, Brinda Santh <bs2796@att.com> | 2019-01-23 11:42:13 -0500 |
commit | 8b5fdaa7cd0f2e9ec7c5db983801d33f47982feb (patch) | |
tree | 47037054f0793c1f2a4dec2c95b424a41607e705 /components/core | |
parent | 8df3192330a6dc770d1ee3e0c68ec918c30aa6ff (diff) |
GRPC 1.18.0 Upgrade.
Change-Id: I1f7f75e14d284641d86c5ef91723b00aaab9bed7
Issue-ID: CCSDK-998
Signed-off-by: Muthuramalingam, Brinda Santh <bs2796@att.com>
Diffstat (limited to 'components/core')
-rw-r--r-- | components/core/src/test/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/utils/BluePrintFileUtilsTest.kt | 4 |
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 143c4a84..59a03719 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() |