Revert "Renaming Files having BluePrint to have Blueprint"
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / blueprints / blueprint-core / src / test / kotlin / org / onap / ccsdk / cds / controllerblueprints / core / utils / BluePrintIOUtilsTest.kt
@@ -18,9 +18,9 @@ package org.onap.ccsdk.cds.controllerblueprints.core.utils
 
 import kotlinx.coroutines.runBlocking
 import org.junit.Test
-import org.onap.ccsdk.cds.controllerblueprints.core.BlueprintRetryException
+import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintRetryException
 
-class BlueprintIOUtilsTest {
+class BluePrintIOUtilsTest {
 
     @Test
     fun testRetry() {
@@ -29,13 +29,13 @@ class BlueprintIOUtilsTest {
                 "success"
             }
             val exceptionBlock = { e: Exception ->
-                if (e is BlueprintRetryException) {
+                if (e is BluePrintRetryException) {
                     println("this is blueprint error")
                 } else {
                     throw e
                 }
             }
-            BlueprintIOUtils.retry<String>(4, 0, 500, executionBlock, exceptionBlock)
+            BluePrintIOUtils.retry<String>(4, 0, 500, executionBlock, exceptionBlock)
         }
     }
 }