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 8cc52c3cfc Added id to the expected result for dumpRouteToXml as a
result of Camel a7c819007682fb7ba96777f1c980b58ba839fd11
8cc52c3cfc is described below
commit 8cc52c3cfc995d25a598a10fb9cbd15d27746e1d
Author: JiriOndrusek <[email protected]>
AuthorDate: Mon Nov 6 15:31:23 2023 +0100
Added id to the expected result for dumpRouteToXml as a result of Camel
a7c819007682fb7ba96777f1c980b58ba839fd11
---
.../apache/camel/quarkus/component/management/it/ManagementTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/integration-tests/management/src/test/java/org/apache/camel/quarkus/component/management/it/ManagementTest.java
b/integration-tests/management/src/test/java/org/apache/camel/quarkus/component/management/it/ManagementTest.java
index 90d7d12de7..bc290b5c95 100644
---
a/integration-tests/management/src/test/java/org/apache/camel/quarkus/component/management/it/ManagementTest.java
+++
b/integration-tests/management/src/test/java/org/apache/camel/quarkus/component/management/it/ManagementTest.java
@@ -60,7 +60,7 @@ class ManagementTest {
.post("/management/invoke")
.then()
.statusCode(200)
- .body(containsString("<from uri=\"direct:start\"/>"));
+ .body(containsString("<from id=\"from1\"
uri=\"direct:start\"/>"));
}
@Test