diff options
author | liamfallon <liam.fallon@est.tech> | 2022-01-17 18:21:48 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2022-01-17 18:22:14 +0000 |
commit | 8e9ca55118aeb52ad88bcc4788bbceddf6df6c5c (patch) | |
tree | 55a59e0b03925eb58a20bc1c5c2de15669b27aa4 /utils/src | |
parent | 3298a289a906e0aff8218f7d9ceb935899b09917 (diff) |
Fix test case broken by new GSON version
The "com/google" resource bundle now contains more than 189 files, so
this test is changed to insetead check for the existence of
"com/google/gson", otherwise this test could break every time we update
gson.
Issue-ID: POLICY-3849
Change-Id: Id979bb7a3d2453956701f64057accb08228a774d
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'utils/src')
-rw-r--r-- | utils/src/test/java/org/onap/policy/common/utils/resources/ResourceUtilsTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/src/test/java/org/onap/policy/common/utils/resources/ResourceUtilsTest.java b/utils/src/test/java/org/onap/policy/common/utils/resources/ResourceUtilsTest.java index d78d909e..8b40816e 100644 --- a/utils/src/test/java/org/onap/policy/common/utils/resources/ResourceUtilsTest.java +++ b/utils/src/test/java/org/onap/policy/common/utils/resources/ResourceUtilsTest.java @@ -312,7 +312,7 @@ public class ResourceUtilsTest { normalizePath(resultD2.iterator().next())); Set<String> resultJ0 = ResourceUtils.getDirectoryContents("com"); - assertEquals(189, resultJ0.size()); + assertTrue(resultJ0.contains("com/google/gson/")); assertEquals("com/google/", normalizePath(resultJ0.iterator().next())); Set<String> resultJ1 = ResourceUtils.getDirectoryContents("com/google/gson"); |