You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/06/21 12:11:56 UTC

[camel-spring-boot] branch main updated: Avoid test execution of PlatformHttpBase class (#872)

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


The following commit(s) were added to refs/heads/main by this push:
     new 9e59328d489 Avoid test execution of PlatformHttpBase class (#872)
9e59328d489 is described below

commit 9e59328d489754ba456f42789ae7433439b5ee52
Author: Marco Carletti <mc...@redhat.com>
AuthorDate: Wed Jun 21 14:11:51 2023 +0200

    Avoid test execution of PlatformHttpBase class (#872)
---
 .../camel/component/platform/http/springboot/PlatformHttpBase.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/PlatformHttpBase.java b/components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/PlatformHttpBase.java
index 37d4ade9f7f..f04ab743419 100644
--- a/components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/PlatformHttpBase.java
+++ b/components-starter/camel-platform-http-starter/src/test/java/org/apache/camel/component/platform/http/springboot/PlatformHttpBase.java
@@ -22,7 +22,7 @@ import org.assertj.core.api.Assertions;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.boot.test.web.client.TestRestTemplate;
 
-public class PlatformHttpBase {
+abstract class PlatformHttpBase {
 
 	@Autowired
 	private TestRestTemplate restTemplate;