Add modify vnf feature on driver
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / test / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / nslcm / impl / NslcmMgmrImplTest.java
index c55b39d..1e98670 100644 (file)
@@ -65,6 +65,7 @@ public class NslcmMgmrImplTest {
        private HttpClientProcessorInf httpClientProcessor;
        
        private String vnfInstanceId = "vnfInstanceId_001";
+       private String vnfmId = "vnfmId_001";
        
        private Gson gson = new Gson();
        
@@ -180,6 +181,6 @@ public class NslcmMgmrImplTest {
                cbamRequest.setAffectedVirtualStorage(affectedVirtualStorage );
                List<AffectedVnfc> affectedVnfc = new ArrayList<AffectedVnfc>();
                cbamRequest.setAffectedVnfc(affectedVnfc );
-               nslcmMgmr.notifyVnf(cbamRequest, vnfInstanceId);
+               nslcmMgmr.notifyVnf(cbamRequest, vnfmId, vnfInstanceId);
        }
 }