[DMAAP-DR] Patch AAF artifacts
[dmaap/datarouter.git] / datarouter-prov / src / test / java / org / onap / dmaap / datarouter / provisioning / utils / AafPropsUtilsTest.java
index 09d4a81..d6de895 100644 (file)
@@ -32,18 +32,17 @@ public class AafPropsUtilsTest {
 
     @BeforeClass
     public static void init() throws Exception {
-        AafPropsUtils.init(new File("src/test/resources/aaf/org.onap.dmaap-dr.props"));
-        aafPropsUtils = AafPropsUtils.getInstance();
+        aafPropsUtils = new AafPropsUtils(new File("src/test/resources/aaf/org.onap.dmaap-dr.props"));
     }
 
     @Test
     public void Assert_AaafPropsUtils_Decrypt_KeyStorePass() {
-        Assert.assertEquals("m9l&3F+{7E&xE&v7xugWAAy0", aafPropsUtils.getKeystorePassProperty());
+        Assert.assertEquals("SYCnsM&BPf@JFhi[&Z2?w?p1", aafPropsUtils.getKeystorePassProperty());
     }
 
     @Test
     public void Assert_AaafPropsUtils_Decrypt_TruststorePass() {
-        Assert.assertEquals("@y,%VD).h8k1z+j1Nhar?.Af", aafPropsUtils.getTruststorePassProperty());
+        Assert.assertEquals(";#HI&OVN,V5O!qBRoNiQEut:", aafPropsUtils.getTruststorePassProperty());
     }
 
     @Test