Bug correction in ServiceDatastore Operations
[transportpce.git] / servicehandler / src / test / java / org / opendaylight / transportpce / servicehandler / ModelMappingUtilsTest.java
index 8aedcda44d6675c882ef05d531ee9c7e7e47fd13..62aecaa3338d471d9d44dbe15caa7049036cb1ac 100644 (file)
@@ -82,23 +82,20 @@ public class ModelMappingUtilsTest extends AbstractTest {
 
     @Test
     public void mappingServicesNullServiceCreateInput() {
-        Services services = ModelMappingUtils.mappingServices(null, null,
-            this.pathComputationRequestOutput);
+        Services services = ModelMappingUtils.mappingServices(null, null);
         Assert.assertEquals(new ServicesBuilder().build(), services);
     }
 
     @Test
     public void mappingServiceNotNullServiceReconfigureInput() {
-        Services services = ModelMappingUtils.mappingServices(null, serviceReconfigureInput,
-            this.pathComputationRequestOutput);
+        Services services = ModelMappingUtils.mappingServices(null, serviceReconfigureInput);
         Assert.assertEquals("service 1", services.getServiceName());
     }
 
     @Test
     public void mappingServiceValid() {
         Services services = ModelMappingUtils.mappingServices(ServiceDataUtils.buildServiceCreateInput(),
-            serviceReconfigureInput,
-            this.pathComputationRequestOutput);
+            serviceReconfigureInput);
         Assert.assertEquals("service 1", services.getServiceName());
     }