This is an automated email from the ASF dual-hosted git repository. fmariani pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 262f4de3f89c25f4b864da6f2f9844bd2ee06ba7 Author: chandrashekhar <[email protected]> AuthorDate: Mon Feb 9 21:26:10 2026 +0530 formatting issue. --- .../java/org/apache/camel/component/plc4x/Plc4XConsumerTest.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/components/camel-plc4x/src/test/java/org/apache/camel/component/plc4x/Plc4XConsumerTest.java b/components/camel-plc4x/src/test/java/org/apache/camel/component/plc4x/Plc4XConsumerTest.java index b77a1c6aff54..9cddb32cfc1a 100644 --- a/components/camel-plc4x/src/test/java/org/apache/camel/component/plc4x/Plc4XConsumerTest.java +++ b/components/camel-plc4x/src/test/java/org/apache/camel/component/plc4x/Plc4XConsumerTest.java @@ -16,16 +16,15 @@ */ package org.apache.camel.component.plc4x; +import java.util.Collections; +import java.util.concurrent.ScheduledFuture; + import org.apache.camel.Processor; import org.apache.camel.impl.DefaultCamelContext; import org.apache.plc4x.java.api.exceptions.PlcConnectionException; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; -import java.util.Collections; -import java.util.Map; -import java.util.concurrent.ScheduledFuture; - import static org.junit.jupiter.api.Assertions.*; import static org.mockito.Mockito.*; @@ -47,7 +46,6 @@ class Plc4XConsumerTest { consumer = new Plc4XConsumer(endpoint, processor); } - @Test void doStart() throws Exception { doNothing().when(endpoint).setupConnection();
