You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ji...@apache.org on 2023/05/18 07:42:26 UTC

[camel-quarkus] branch camel-main updated: fixed minio test because of CAMEL-17652

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 5cfbcdb167 fixed minio test because of CAMEL-17652
5cfbcdb167 is described below

commit 5cfbcdb167715ee6871e95324c62450a9eb9ea55
Author: JiriOndrusek <on...@gmail.com>
AuthorDate: Thu May 18 09:42:09 2023 +0200

    fixed minio test because of CAMEL-17652
---
 .../java/org/apache/camel/quarkus/component/minio/it/MinioTest.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/integration-tests/minio/src/test/java/org/apache/camel/quarkus/component/minio/it/MinioTest.java b/integration-tests/minio/src/test/java/org/apache/camel/quarkus/component/minio/it/MinioTest.java
index 3a1e731221..bdf2e3fc4c 100644
--- a/integration-tests/minio/src/test/java/org/apache/camel/quarkus/component/minio/it/MinioTest.java
+++ b/integration-tests/minio/src/test/java/org/apache/camel/quarkus/component/minio/it/MinioTest.java
@@ -335,8 +335,8 @@ class MinioTest {
                         "bucket", nonExistingBucket2))
                 .post("/minio/operation")
                 .then()
-                .statusCode(500)
-                .body(containsString("Failed to resolve endpoint"));
+                .statusCode(200)
+                .body(not(containsString(nonExistingBucket2)));
     }
 
     @Test