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


The following commit(s) were added to refs/heads/camel-main by this push:
     new fa8c7bb05f fixed catalog tests
fa8c7bb05f is described below

commit fa8c7bb05fab08b73d24fd4dc891514bed74ea44
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..6e8fb39e91 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)

Reply via email to