File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
server/src/test/java/com/cloud/network/as Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -2533,13 +2533,15 @@ public void getNextVmHostAndDisplayNameGeneratesCorrectHostAndDisplayNameForWind
25332533 GuestOSVO guestOS = Mockito .mock (GuestOSVO .class );
25342534 when (guestOS .getName ()).thenReturn ("Windows Server" );
25352535 when (guestOSDao .findById (1L )).thenReturn (guestOS );
2536+ runGetNextVmHostAndDisplayNameGeneratesCorrectHostAndDisplayNameForWindowsTemplate ();
25362537 }
25372538
25382539 @ Test
25392540 public void getNextVmHostAndDisplayNameGeneratesCorrectHostAndDisplayNameForWindowsTemplateUsingGuestOsDisplayName () {
25402541 GuestOSVO guestOS = Mockito .mock (GuestOSVO .class );
25412542 when (guestOS .getDisplayName ()).thenReturn ("Windows Server" );
25422543 when (guestOSDao .findById (1L )).thenReturn (guestOS );
2544+ runGetNextVmHostAndDisplayNameGeneratesCorrectHostAndDisplayNameForWindowsTemplate ();
25432545 }
25442546
25452547 @ Test
You can’t perform that action at this time.
0 commit comments