ovsdb enable checkstyle on error
[ovsdb.git] / southbound / southbound-impl / src / test / java / org / opendaylight / ovsdb / southbound / ovsdb / transact / TransactUtilsTest.java
index 3664d2fee0c6ddf3d1e5e51967cd4d64308e4c5b..dba5cf5817387c2b9af3710a8190a91462c3f957 100644 (file)
@@ -29,7 +29,6 @@ import org.junit.Before;
 import org.junit.Test;
 import org.junit.runner.RunWith;
 import org.mockito.Mockito;
-import org.mockito.stubbing.OngoingStubbing;
 import org.opendaylight.controller.md.sal.common.api.data.AsyncDataChangeEvent;
 import org.opendaylight.ovsdb.lib.notation.Mutation;
 import org.opendaylight.ovsdb.lib.notation.Mutator;
@@ -199,7 +198,7 @@ public class TransactUtilsTest {
         Insert insert = mock(Insert.class);
         when(insert.getUuidName()).thenReturn(UUID_NAME);
         PowerMockito.mockStatic(SouthboundMapper.class);
-        PowerMockito.when(SouthboundMapper.getRandomUUID()).thenReturn(UUID_NAME);
+        PowerMockito.when(SouthboundMapper.getRandomUuid()).thenReturn(UUID_NAME);
         doNothing().when(insert).setUuidName(anyString());
 
         UUID uuid = mock(UUID.class);