This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch fix-transform-test-yaml-quoting in repository https://gitbox.apache.org/repos/asf/camel.git
commit 2484e17039380cae674f513375ad618e67f894d2 Author: Claus Ibsen <[email protected]> AuthorDate: Thu May 21 17:15:37 2026 +0200 Fix TransformTest expected output after YAML writer change The new generated YAML writer from CAMEL-23596 quotes numeric constant expressions. Update the expected blueprint-out.yaml to match. Co-Authored-By: Claude Opus 4.6 <[email protected]> --- dsl/camel-jbang/camel-jbang-core/src/test/resources/blueprint-out.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsl/camel-jbang/camel-jbang-core/src/test/resources/blueprint-out.yaml b/dsl/camel-jbang/camel-jbang-core/src/test/resources/blueprint-out.yaml index f110c9551dfb..754bcf2ae5e9 100644 --- a/dsl/camel-jbang/camel-jbang-core/src/test/resources/blueprint-out.yaml +++ b/dsl/camel-jbang/camel-jbang-core/src/test/resources/blueprint-out.yaml @@ -38,4 +38,4 @@ name: Exchange.HTTP_RESPONSE_CODE expression: constant: - expression: 404 \ No newline at end of file + expression: "404" \ No newline at end of file
