Skip to content

Commit 90c2ed5

Browse files
committed
fix
Signed-off-by: Abhishek Kumar <[email protected]>
1 parent b252f41 commit 90c2ed5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/test/java/com/cloud/server/ManagementServerImplTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,7 @@ public void testUpdateGuestOsCategory_NoChanges() {
809809
when(_guestOSCategoryDao.findById(id)).thenReturn(guestOSCategory);
810810
GuestOsCategory result = spy.updateGuestOsCategory(updateCmd);
811811
Assert.assertNotNull(result);
812-
Assert.assertNull( result.getName());
812+
Assert.assertNotNull(result.getName());
813813
Assert.assertFalse(result.isFeatured());
814814
Mockito.verify(_guestOSCategoryDao, Mockito.times(1)).findById(id);
815815
Mockito.verify(_guestOSCategoryDao, Mockito.never()).update(Mockito.eq(id), any(GuestOSCategoryVO.class));

0 commit comments

Comments
 (0)