diff options
author | liamfallon <liam.fallon@est.tech> | 2020-07-16 14:15:56 +0100 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2020-07-17 09:28:50 +0100 |
commit | 8cedec370948950ba52a89b689b478d884b2c055 (patch) | |
tree | b241b1f7faca6a87635a5626a55ca896d65d1dd0 /core/core-engine | |
parent | 592e04f6301dd38ae48d38501cc251fc3d5ad2fb (diff) |
Fix double initiation error on EngineServiceFacade
The engineServiceFacade allows it's init() method to be called twice,
the second call should return that the facade is already initialized.
Issue-ID: POLICY-2720
Change-Id: Id241e232163a8812a72f92841ce7b11f59358d45
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'core/core-engine')
-rw-r--r-- | core/core-engine/src/test/java/org/onap/policy/apex/core/engine/executor/TaskSelectExecutorTest.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/core-engine/src/test/java/org/onap/policy/apex/core/engine/executor/TaskSelectExecutorTest.java b/core/core-engine/src/test/java/org/onap/policy/apex/core/engine/executor/TaskSelectExecutorTest.java index 182ce3597..edfbcf20f 100644 --- a/core/core-engine/src/test/java/org/onap/policy/apex/core/engine/executor/TaskSelectExecutorTest.java +++ b/core/core-engine/src/test/java/org/onap/policy/apex/core/engine/executor/TaskSelectExecutorTest.java @@ -130,12 +130,6 @@ public class TaskSelectExecutorTest { try { executor.executePre(0, new Properties(), incomingEvent); - } catch (Exception ex) { - assertEquals("task input fields \"[InField0]\" are missing for task \"Task0:0.0.1\"", ex.getMessage()); - } - - try { - executor.executePre(0, new Properties(), incomingEvent); } catch (Exception e) { fail("test should not throw an exception"); } |