This is an automated email from the ASF dual-hosted git repository. jiriondrusek pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 7fccd9d0e6991bbb59abb557e6a336e144971dad Author: JiriOndrusek <ondrusek.j...@gmail.com> AuthorDate: Fri Mar 22 10:59:33 2024 +0100 fixed catalog tests --- .../org/apache/camel/catalog/quarkus/QuarkusRuntimeProviderTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalog/src/test/java/org/apache/camel/catalog/quarkus/QuarkusRuntimeProviderTest.java b/catalog/src/test/java/org/apache/camel/catalog/quarkus/QuarkusRuntimeProviderTest.java index 0e331e470a..8b4b2c7978 100644 --- a/catalog/src/test/java/org/apache/camel/catalog/quarkus/QuarkusRuntimeProviderTest.java +++ b/catalog/src/test/java/org/apache/camel/catalog/quarkus/QuarkusRuntimeProviderTest.java @@ -73,7 +73,7 @@ public class QuarkusRuntimeProviderTest { public void extensionsPresent() throws Exception { final Set<String> artifactIdsPresentInCatalog = Stream.of(Kind.values()) - .filter(kind -> kind != Kind.eip) + .filter(kind -> (kind != Kind.eip && kind != Kind.model && kind != Kind.bean)) .flatMap(kind -> catalog.findNames(kind).stream() .map(name -> catalog.model(kind, name))) .filter(model -> model instanceof ArtifactModel)