diff options
author | Lee, Tian (tl5884) <tianl@amdocs.com> | 2018-09-18 10:02:25 +0100 |
---|---|---|
committer | Lee, Tian (tl5884) <tianl@amdocs.com> | 2018-09-18 10:02:25 +0100 |
commit | 9a00ccfbf7202b571a7dbc40e63b60750c5773f6 (patch) | |
tree | b3d7e5b38344148c386acbea618bb6ed8cd87c0d | |
parent | f04704cdab4396f57c5b4d5c516cae0835918a6a (diff) |
Remove unused system properties from unit tests
Change-Id: I5d56bf794c69381d03dda277afe4e110791b660a
Issue-ID: AAI-1606
Signed-off-by: Lee, Tian (tl5884) <tianl@amdocs.com>
-rw-r--r-- | src/test/java/org/onap/aai/modelloader/restclient/TestAaiRestClient.java | 2 | ||||
-rw-r--r-- | src/test/java/org/onap/aai/modelloader/restclient/TestAaiServiceClient.java | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/test/java/org/onap/aai/modelloader/restclient/TestAaiRestClient.java b/src/test/java/org/onap/aai/modelloader/restclient/TestAaiRestClient.java index 8b1b22c..97b30f5 100644 --- a/src/test/java/org/onap/aai/modelloader/restclient/TestAaiRestClient.java +++ b/src/test/java/org/onap/aai/modelloader/restclient/TestAaiRestClient.java @@ -51,8 +51,6 @@ public class TestAaiRestClient { props.setProperty("ml.distribution.ARTIFACT_TYPES", "MODEL_INVENTORY_PROFILE,MODEL_QUERY_SPEC,VNF_CATALOG"); props.setProperty("ml.aai.BASE_URL", "https://localhost:8443"); props.setProperty("ml.aai.MODEL_URL", "/aai/v9/service-design-and-creation/models/model/"); - props.setProperty("ml.aai.KEYSTORE_FILE", "aai-client-cert.p12"); - props.setProperty("ml.aai.KEYSTORE_PASSWORD", "OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o"); ModelLoaderConfig config = new ModelLoaderConfig(props, "."); diff --git a/src/test/java/org/onap/aai/modelloader/restclient/TestAaiServiceClient.java b/src/test/java/org/onap/aai/modelloader/restclient/TestAaiServiceClient.java index ac2d7e4..8494f33 100644 --- a/src/test/java/org/onap/aai/modelloader/restclient/TestAaiServiceClient.java +++ b/src/test/java/org/onap/aai/modelloader/restclient/TestAaiServiceClient.java @@ -55,8 +55,6 @@ public class TestAaiServiceClient { Properties props = new Properties(); props.put("ml.aai.KEYSTORE_PASSWORD", "2244"); - props.put("ml.aai.KEYSTORE_FILE", "src/test/resources/auth/aai-client-cert.p12"); - props.put("ml.aai.KEYSTORE_PASSWORD", "OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o"); ModelLoaderConfig config = new ModelLoaderConfig(props, "."); aaiClient = new AaiRestClient(config); } |