diff options
author | Jorge Hernandez <jh1730@att.com> | 2018-02-02 20:26:43 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-02-02 20:26:43 +0000 |
commit | bdb9bf58d7a80f43c3ce558e6fe59c3bc0f6f8bd (patch) | |
tree | 8549328184000f139d5a53a23e93673ecbb49dd7 /PolicyEngineAPI/src/test/java | |
parent | 0c8425b25c093f638351a14f84a7b1df731cd0de (diff) | |
parent | 4723527133e158ba48bf5a1eb9eec731af2ae1f8 (diff) |
Merge "Technical debt reduction"
Diffstat (limited to 'PolicyEngineAPI/src/test/java')
-rw-r--r-- | PolicyEngineAPI/src/test/java/org/onap/policy/std/test/MatchStoreTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PolicyEngineAPI/src/test/java/org/onap/policy/std/test/MatchStoreTest.java b/PolicyEngineAPI/src/test/java/org/onap/policy/std/test/MatchStoreTest.java index e4116db1d..f5a86d17d 100644 --- a/PolicyEngineAPI/src/test/java/org/onap/policy/std/test/MatchStoreTest.java +++ b/PolicyEngineAPI/src/test/java/org/onap/policy/std/test/MatchStoreTest.java @@ -23,8 +23,8 @@ package org.onap.policy.std.test; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; -import java.util.HashSet; import java.util.Hashtable; +import java.util.Set; import org.junit.After; import org.junit.Before; @@ -373,7 +373,7 @@ public class MatchStoreTest { public void testGetMatchStore_1() throws Exception { - HashSet<Matches> result = MatchStore.getMatchStore(); + Set<Matches> result = MatchStore.getMatchStore(); // add additional test code here // An unexpected exception was thrown in user code while executing this test: |