Fix odlparent-3.0.0 checkstyle issues
[mdsal.git] / dom / mdsal-dom-broker / src / test / java / org / opendaylight / mdsal / dom / broker / MountPointServiceTest.java
index 8c60649b3725439404ecd4449ce2899d2ec42da3..adea584bc89d04b2c7657df3bad85f903cb5d6de 100644 (file)
@@ -58,15 +58,15 @@ public class MountPointServiceTest {
         final DOMMountPointListener listener = mock(DOMMountPointListener.class);
         doNothing().when(listener).onMountPointCreated(PATH);
         doNothing().when(listener).onMountPointRemoved(PATH);
-        final DOMMountPointServiceImpl mountService = new DOMMountPointServiceImpl();
-        mountService.registerProvisionListener(listener);
-        mountService.createMountPoint(PATH).register();
+        final DOMMountPointServiceImpl service = new DOMMountPointServiceImpl();
+        service.registerProvisionListener(listener);
+        service.createMountPoint(PATH).register();
 
-        assertTrue(mountService.getMountPoint(PATH).isPresent());
+        assertTrue(service.getMountPoint(PATH).isPresent());
 
-        mountService.unregisterMountPoint(PATH);
+        service.unregisterMountPoint(PATH);
 
-        assertFalse(mountService.getMountPoint(PATH).isPresent());
+        assertFalse(service.getMountPoint(PATH).isPresent());
     }
 
     @Test