This is an automated email from the ASF dual-hosted git repository. gzurowski pushed a commit to branch camel-3.18.x in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-3.18.x by this push: new e2bf8581131 [Minor] Apply formatter e2bf8581131 is described below commit e2bf858113136741be3c21e54a23e997742172d0 Author: Gregor Zurowski <gre...@zurowski.org> AuthorDate: Sat May 20 19:29:18 2023 +0000 [Minor] Apply formatter --- .../src/test/java/org/apache/camel/component/snmp/PollOIDTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/camel-snmp/src/test/java/org/apache/camel/component/snmp/PollOIDTest.java b/components/camel-snmp/src/test/java/org/apache/camel/component/snmp/PollOIDTest.java index 3e02c5205d0..c6744b9858c 100644 --- a/components/camel-snmp/src/test/java/org/apache/camel/component/snmp/PollOIDTest.java +++ b/components/camel-snmp/src/test/java/org/apache/camel/component/snmp/PollOIDTest.java @@ -45,16 +45,16 @@ public class PollOIDTest extends SnmpRespondTestSupport { public void configure() { from(String.format("snmp:%s?protocol=udp&type=POLL&snmpVersion=0&oids=%s&delay=100", getListeningAddress(), SnmpConstants.sysName)) - .to("mock:resultV0"); + .to("mock:resultV0"); from(String.format("snmp:%s?protocol=udp&type=POLL&snmpVersion=1&oids=%s&delay=100", getListeningAddress(), SnmpConstants.sysName)) - .to("mock:resultV1"); + .to("mock:resultV1"); from(String.format( "snmp:%s?protocol=udp&type=POLL&snmpVersion=3&securityName=%s&securityLevel=1&oids=%s&delay=100", getListeningAddress(), SECURITY_NAME, SnmpConstants.sysName)) - .to("mock:resultV3"); + .to("mock:resultV3"); } }; }