From b6b7bef8bdcad15af01ac88a038dd763ce59f68f Mon Sep 17 00:00:00 2001 From: xg353y Date: Tue, 11 Apr 2017 13:30:42 +0200 Subject: [MSO-8] Update the maven dependency Update the maven depenency for sdc-distribution-client to cooperate with the sdc changes. Change-Id: I2da936e5c40cb68c7181bb78307192dd5655b5dc Signed-off-by: xg353y --- common/src/test/java/org/openecomp/mso/utils/CryptoUtilsESTest.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'common/src/test') diff --git a/common/src/test/java/org/openecomp/mso/utils/CryptoUtilsESTest.java b/common/src/test/java/org/openecomp/mso/utils/CryptoUtilsESTest.java index 397db374bb..59e8cec92d 100644 --- a/common/src/test/java/org/openecomp/mso/utils/CryptoUtilsESTest.java +++ b/common/src/test/java/org/openecomp/mso/utils/CryptoUtilsESTest.java @@ -11,6 +11,8 @@ import static org.evosuite.runtime.EvoAssertions.*; import javax.crypto.BadPaddingException; import javax.crypto.IllegalBlockSizeException; +import java.security.InvalidKeyException; + import org.evosuite.runtime.EvoRunner; import org.evosuite.runtime.EvoRunnerParameters; import org.junit.runner.RunWith; @@ -65,7 +67,7 @@ public class CryptoUtilsESTest extends CryptoUtilsESTestscaffolding { CryptoUtils.decrypt("B20000000000000000000000000000000000000000000000", "B20000000000000000000000000000000000000000000000"); fail("Expecting exception: IllegalBlockSizeException"); - } catch(IllegalBlockSizeException e) { + } catch(IllegalBlockSizeException | InvalidKeyException e) { } } -- cgit 1.2.3-korg