This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 1b8610e8cb5180b9286989b83a48e171be1c7098 Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Tue May 31 15:12:52 2022 +0200 (chores) camel-http: rename manual test This prevent it from being flagged with missing assertions in code analysis --- .../{HttpProducerLoadTest.java => HttpProducerLoadManualIT.java} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/camel-http/src/test/java/org/apache/camel/component/http/HttpProducerLoadTest.java b/components/camel-http/src/test/java/org/apache/camel/component/http/HttpProducerLoadManualIT.java similarity index 96% rename from components/camel-http/src/test/java/org/apache/camel/component/http/HttpProducerLoadTest.java rename to components/camel-http/src/test/java/org/apache/camel/component/http/HttpProducerLoadManualIT.java index e9fc12bef93..f6160d20a60 100644 --- a/components/camel-http/src/test/java/org/apache/camel/component/http/HttpProducerLoadTest.java +++ b/components/camel-http/src/test/java/org/apache/camel/component/http/HttpProducerLoadManualIT.java @@ -37,10 +37,10 @@ import org.slf4j.LoggerFactory; import static org.apache.camel.component.http.HttpMethods.GET; -@Disabled("Manual test") -public class HttpProducerLoadTest extends BaseHttpTest { +@Disabled("Manual integration test") +public class HttpProducerLoadManualIT extends BaseHttpTest { - private static final Logger LOG = LoggerFactory.getLogger(HttpProducerLoadTest.class); + private static final Logger LOG = LoggerFactory.getLogger(HttpProducerLoadManualIT.class); private HttpServer localServer;
