Remove targetEntity from makeOutcome
[policy/models.git] / models-interactions / model-actors / actor.test / src / main / java / org / onap / policy / controlloop / actor / test / BasicOperation.java
index bb7f34b..539202c 100644 (file)
@@ -102,7 +102,7 @@ public class BasicOperation {
         makeContext();
 
         // get a fresh outcome
-        outcome = params.makeOutcome(TARGET_ENTITY);
+        outcome = params.makeOutcome();
     }
 
     /**
@@ -112,7 +112,7 @@ public class BasicOperation {
      */
     protected void makeContext() {
         params = ControlLoopOperationParams.builder().executor(executor).requestId(REQ_ID).actorService(service)
-                        .actor(actorName).operation(operationName).targetEntity(TARGET_ENTITY).payload(makePayload())
+                        .actor(actorName).operation(operationName).payload(makePayload())
                         .build();
     }