Skip to content

Commit

Permalink
chore: Fix E2E tests for Groovy DSL
Browse files Browse the repository at this point in the history
  • Loading branch information
christophd committed Oct 26, 2023
1 parent 7dd6f78 commit d980a8e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion examples/groovy/helloworld.it.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
*/

given:
- echo("Hello! YAKS rocks!")
$(echo("Hello! YAKS rocks!"))
16 changes: 8 additions & 8 deletions examples/groovy/messaging.test.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ given:
}

when:
- send().endpoint(hello)
.message()
.body('${text}')
.header("operation", "say-hello")
$(send().endpoint(hello)
.message()
.body('${text}')
.header("operation", "say-hello"))

then:
- receive().endpoint(hello)
.message()
.header("operation", "say-hello")
.body('${text}')
$(receive().endpoint(hello)
.message()
.header("operation", "say-hello")
.body('${text}'))

0 comments on commit d980a8e

Please sign in to comment.