From 17413ddf83ba8a51e978b368313cd366d57b1e48 Mon Sep 17 00:00:00 2001 From: Piotr Borelowski Date: Tue, 21 Jan 2020 09:23:23 +0100 Subject: Ve-Vnfm (SOL002) Adapter fix Changed the in pom.xml to use org.onap.so:adapters Issue-ID: SO-2574 Signed-off-by: Piotr Borelowski Change-Id: Ia049de7a757126df1fba8cc3adc1913ef2b927fd --- .../so/adapters/vevnfm/controller/NotificationControllerTest.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'adapters/mso-ve-vnfm-adapter/src/test/java/org') diff --git a/adapters/mso-ve-vnfm-adapter/src/test/java/org/onap/so/adapters/vevnfm/controller/NotificationControllerTest.java b/adapters/mso-ve-vnfm-adapter/src/test/java/org/onap/so/adapters/vevnfm/controller/NotificationControllerTest.java index d31c6f2ea5..c8d2a6bf90 100644 --- a/adapters/mso-ve-vnfm-adapter/src/test/java/org/onap/so/adapters/vevnfm/controller/NotificationControllerTest.java +++ b/adapters/mso-ve-vnfm-adapter/src/test/java/org/onap/so/adapters/vevnfm/controller/NotificationControllerTest.java @@ -24,7 +24,6 @@ import org.junit.Test; import org.onap.so.adapters.vnfmadapter.extclients.vnfm.lcn.model.VnfLcmOperationOccurrenceNotification; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; - import static org.junit.Assert.assertEquals; public class NotificationControllerTest { @@ -33,8 +32,7 @@ public class NotificationControllerTest { @Test public void testReceiveNotification() { - final VnfLcmOperationOccurrenceNotification notification - = new VnfLcmOperationOccurrenceNotification(); + final VnfLcmOperationOccurrenceNotification notification = new VnfLcmOperationOccurrenceNotification(); final ResponseEntity response = controller.receiveNotification(notification); assertEquals(HttpStatus.OK, response.getStatusCode()); } -- cgit 1.2.3-korg