Skip to content

Commit

Permalink
Update SplunkSinkConnecterTest.java
Browse files Browse the repository at this point in the history
Remove println statement.
  • Loading branch information
VihasMakwana authored Mar 19, 2024
1 parent 9d9d0a3 commit 755f97d
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,6 @@ private void assertHasErrorMessage(Config config, String property, String msg) {
private void assertHasErrorMessage(Config config, String property, String msg, int idx) {
for (ConfigValue configValue : config.configValues()) {
if (configValue.name().equals(property)) {
System.out.print(configValue.errorMessages());
assertFalse(configValue.errorMessages().isEmpty());
assertTrue(configValue.errorMessages().get(idx).contains(msg));
}
Expand Down

0 comments on commit 755f97d

Please sign in to comment.