diff options
author | SravanKumarGunda <sravan.kumar1@huawei.com> | 2020-08-04 21:02:32 +0530 |
---|---|---|
committer | SravanKumarGunda <sravan.kumar1@huawei.com> | 2020-08-04 21:02:32 +0530 |
commit | 1b9f8877186932d84c5ed4405aa0d73242d33cdf (patch) | |
tree | 8a94f379e87b06d974fbb01221cfa6b06561b7bd /profiles/http/src | |
parent | 6941680edbc46f1525ef739305f11781d1ddd70a (diff) |
code improvements-sonar fixes
Signed-off-by: SravanKumarGunda <sravan.kumar1@huawei.com>
Issue-ID: CLI-270
Change-Id: I3f663df51e27e7295f9cad51ace100d784ab94bb
Diffstat (limited to 'profiles/http/src')
-rw-r--r-- | profiles/http/src/test/java/org/onap/cli/fw/http/utils/OnapCommandUtilsTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/profiles/http/src/test/java/org/onap/cli/fw/http/utils/OnapCommandUtilsTest.java b/profiles/http/src/test/java/org/onap/cli/fw/http/utils/OnapCommandUtilsTest.java index 7ad3c3ff..89504fb7 100644 --- a/profiles/http/src/test/java/org/onap/cli/fw/http/utils/OnapCommandUtilsTest.java +++ b/profiles/http/src/test/java/org/onap/cli/fw/http/utils/OnapCommandUtilsTest.java @@ -223,7 +223,7 @@ public class OnapCommandUtilsTest { HttpInput httpInput = new HttpInput(); httpInput.setMultiparts(multiparts); HttpInput input = OnapCommandHttpUtils.populateParameters(params, httpInput); - assertTrue(input != null); + assertNotNull(input); } } |