diff options
author | liamfallon <liam.fallon@ericsson.com> | 2018-01-30 17:06:20 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@ericsson.com> | 2018-01-30 17:06:52 +0000 |
commit | 65f5fcc147c8dcc43b9c30742c81545859ab3e02 (patch) | |
tree | 3e0dddf90b2a1fd942399e3f9a7d479c64d35840 /controlloop/common/model-impl/vfc | |
parent | 7767c5643349e5e6691a07afd5c4acd3ef9d5617 (diff) |
Fix technical debt/JUnit on SO/VFC/SO ACTOR
Unit test expanded for SO POJOs, technical debt removed in SO actor and VFC pojos.
Change-Id: I23b886c40c1ac6ac8dc2ebbaade315b71cca9dd0
Signed-off-by: liamfallon <liam.fallon@ericsson.com>
Issue-ID: POLICY-455
Diffstat (limited to 'controlloop/common/model-impl/vfc')
-rw-r--r-- | controlloop/common/model-impl/vfc/src/main/java/org/onap/policy/vfc/VFCManager.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/controlloop/common/model-impl/vfc/src/main/java/org/onap/policy/vfc/VFCManager.java b/controlloop/common/model-impl/vfc/src/main/java/org/onap/policy/vfc/VFCManager.java index 7146e43ca..175223968 100644 --- a/controlloop/common/model-impl/vfc/src/main/java/org/onap/policy/vfc/VFCManager.java +++ b/controlloop/common/model-impl/vfc/src/main/java/org/onap/policy/vfc/VFCManager.java @@ -119,7 +119,7 @@ public final class VFCManager implements Runnable { logger.debug(body); String responseStatus = responseGet.getResponseDescriptor().getStatus(); - if (httpDetailsGet.a == 200 && (responseStatus.equalsIgnoreCase("finished") || responseStatus.equalsIgnoreCase("error"))) { + if (httpDetailsGet.a == 200 && ("finished".equalsIgnoreCase(responseStatus) || "error".equalsIgnoreCase(responseStatus))) { logger.debug("VFC Heal Status {}", responseGet.getResponseDescriptor().getStatus()); workingMem.insert(responseGet); break; |