Skip to content

Commit

Permalink
fix: sonar issues
Browse files Browse the repository at this point in the history
  • Loading branch information
andrejpetras committed Jul 19, 2024
1 parent b58b096 commit a374b62
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
class DatabaseCheckMainMockTest extends AbstractTest {

@Test
public void testException() throws SQLException {
void testException() throws SQLException {

var config = Mockito.mock(DatabaseCheckConfig.class);
Mockito.when(config.enabled()).thenReturn(true);
Expand All @@ -33,7 +33,7 @@ public void testException() throws SQLException {
}

@Test
public void testDisableConfig() {
void testDisableConfig() {

var config = Mockito.mock(DatabaseCheckConfig.class);
Mockito.when(config.enabled()).thenReturn(false);
Expand Down

0 comments on commit a374b62

Please sign in to comment.