diff options
author | 2020-07-17 16:16:01 +0000 | |
---|---|---|
committer | 2020-07-17 16:16:01 +0000 | |
commit | f9024ec5854f9b528a0e3485a1d2fdc5830ab2ac (patch) | |
tree | a48f453a283691272037546cff17b7e947691141 /core/core-engine | |
parent | 28eced32d2acdf731f7782e14f37bf2ea8c98019 (diff) | |
parent | 8cedec370948950ba52a89b689b478d884b2c055 (diff) |
Merge "Fix double initiation error on EngineServiceFacade"
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"); } |