diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2018-03-21 13:20:54 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-03-21 13:20:54 +0000 |
commit | e53bd66cc71fcc3f7dff762054790c382d7dd499 (patch) | |
tree | e457e55abfb060d978508e2480a368ea294dc929 /ONAP-PDP-REST/src/test | |
parent | 6e00f46e0c2ee4dbbdb0e222e6f361210d1a0da1 (diff) | |
parent | eef3c224cb6cad4b82a96938ade1e42ca881eea2 (diff) |
Merge "Fix all bugs reported by Sonar in policy/engine"
Diffstat (limited to 'ONAP-PDP-REST/src/test')
-rw-r--r-- | ONAP-PDP-REST/src/test/java/org/onap/policy/pdp/rest/api/test/getDictionaryTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ONAP-PDP-REST/src/test/java/org/onap/policy/pdp/rest/api/test/getDictionaryTest.java b/ONAP-PDP-REST/src/test/java/org/onap/policy/pdp/rest/api/test/getDictionaryTest.java index e18f8bb03..38dafee35 100644 --- a/ONAP-PDP-REST/src/test/java/org/onap/policy/pdp/rest/api/test/getDictionaryTest.java +++ b/ONAP-PDP-REST/src/test/java/org/onap/policy/pdp/rest/api/test/getDictionaryTest.java @@ -41,7 +41,7 @@ public class getDictionaryTest { dp.setDictionary("test"); GetDictionaryService gds = new GetDictionaryService(dp, null); String result = (String) formatDictionary.invoke(gds, input); - assertNull(result); + assertNotNull(result); // dp.setDictionary("OnapName"); gds = new GetDictionaryService(dp, null); |