Skip to content

Commit

Permalink
Fix the failing test case
Browse files Browse the repository at this point in the history
  • Loading branch information
mekya committed Nov 22, 2023
1 parent 7b65295 commit 1d03f4a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ public void testSetAppContext()

assertEquals(ServerSettings.getLocalHostAddress(), settings.getHostAddress());

Mockito.verify(settings).setNativeLogLevel(settings.getNativeLogLevel());
String nativeLogLevel = settings.getNativeLogLevel();
Mockito.verify(settings).setNativeLogLevel(nativeLogLevel);


Mockito.doReturn("").when(settings).getHostAddressFromEnvironment();
Expand Down

0 comments on commit 1d03f4a

Please sign in to comment.