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 / BluePrintErrorTest.kt
@@ -4,18 +4,18 @@ import org.junit.Test
 import kotlin.test.assertEquals
 import kotlin.test.assertTrue
 
-class BlueprintErrorTest {
+class BluePrintErrorTest {
 
     @Test
-    fun testBlueprintErrorIsCreatedWithemptyList() {
-        val bluePrintError = BlueprintError()
+    fun testBluePrintErrorIsCreatedWithemptyList() {
+        val bluePrintError = BluePrintError()
 
         assertTrue(bluePrintError.allErrors().isEmpty())
     }
 
     @Test
     fun testAddErrorWith3Params() {
-        val bluePrintError = BlueprintError()
+        val bluePrintError = BluePrintError()
 
         bluePrintError.addError("type", "name", "error", "step")
 
@@ -24,7 +24,7 @@ class BlueprintErrorTest {
 
     @Test
     fun testAddErrorWith2Params() {
-        val bluePrintError = BlueprintError()
+        val bluePrintError = BluePrintError()
 
         bluePrintError.addError("error", "step")