Skip to content

Commit

Permalink
fixed tests for skip
Browse files Browse the repository at this point in the history
  • Loading branch information
bischoffdev committed Oct 9, 2018
1 parent 441bde4 commit dacea68
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void missingHtmlReportDirectoryTest() throws Exception {
@Test
public void logBasePropertiesTest() {
propertyManager.logProperties();
verify(logger, times(4)).info(anyString());
verify(logger, times(3)).info(anyString());
}

@Test
Expand All @@ -78,6 +78,6 @@ public void logFullPropertiesTest() {
customParameters.put("key2", "value2");
propertyManager.setCustomParameters(customParameters);
propertyManager.logProperties();
verify(logger, times(6)).info(anyString());
verify(logger, times(5)).info(anyString());
}
}

0 comments on commit dacea68

Please sign in to comment.