Skip to content

Commit 53fdbff

Browse files
committed
Fix test compilation error
Signed-off-by: Matheus Cruz <matheuscruz.dev@gmail.com>
1 parent 6cce9d0 commit 53fdbff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

impl/test/src/test/java/io/serverlessworkflow/impl/test/FuncDSLEnrichWithTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ void test_input_with_inputFrom() {
4444
return input + 5;
4545
},
4646
Long.class),
47-
function("returnEnriched", (Long giedValue) -> enrichedValue, Long.class)
47+
function("returnEnriched", (Long enrichedValue) -> enrichedValue, Long.class)
4848
.inputFrom(
4949
(object, workflowContext) -> {
5050
softly.assertThat(object).isEqualTo(15L);

0 commit comments

Comments
 (0)