Skip to content

Commit 1fda9fc

Browse files
author
Ludovic TOURMAN
committed
Fix test comparison
1 parent 2f2fb7d commit 1fda9fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,8 @@ jobs:
261261
env:
262262
EXPECTED_LOG_MESSAGE: "### Env: ${{ matrix.environment }} ###"
263263
with:
264-
expected: "true"
265-
actual: ${{ fromJson(steps.named-run-workflow.outputs.workflow-logs).echo.*.message == env.EXPECTED_LOG_MESSAGE }}
264+
expected: true
265+
actual: ${{ contains(fromJson(steps.named-run-workflow.outputs.workflow-logs).echo.*.message, env.EXPECTED_LOG_MESSAGE) }}
266266

267267
deploy:
268268
needs:

0 commit comments

Comments
 (0)