X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aai%2Fesr-server.git;a=blobdiff_plain;f=esr-mgr%2Fsrc%2Ftest%2Fjava%2Forg%2Fonap%2Faai%2Fesr%2Fwrapper%2FThirdpartySdncWrapperTest.java;h=d60fcce11ece5a40612f0fd3a8370a30e52ff308;hp=c236f300a89ab3fece5b7e49f2842a357b534a75;hb=41d59ecbd847f49c30d33941289c69ad5e2a1c62;hpb=93934b27fdc08e18165766860949258ac3edb9a3 diff --git a/esr-mgr/src/test/java/org/onap/aai/esr/wrapper/ThirdpartySdncWrapperTest.java b/esr-mgr/src/test/java/org/onap/aai/esr/wrapper/ThirdpartySdncWrapperTest.java index c236f30..d60fcce 100644 --- a/esr-mgr/src/test/java/org/onap/aai/esr/wrapper/ThirdpartySdncWrapperTest.java +++ b/esr-mgr/src/test/java/org/onap/aai/esr/wrapper/ThirdpartySdncWrapperTest.java @@ -24,6 +24,7 @@ import org.junit.Assert; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; +import org.onap.aai.esr.common.IsTest; import org.onap.aai.esr.common.MsbConfig; import org.onap.aai.esr.entity.rest.ThirdpartySdncRegisterInfo; import org.onap.aai.esr.externalservice.aai.ExternalSystemProxy; @@ -38,12 +39,12 @@ public class ThirdpartySdncWrapperTest { @BeforeClass public static void beforeClass() { - ExternalSystemProxy.isTest = true; + ExternalSystemProxy.test = new IsTest(true); }; @AfterClass public static void afterClass() { - ExternalSystemProxy.isTest = false; + ExternalSystemProxy.test = new IsTest(false); }; @Before