Skip to content

Commit

Permalink
Fix test comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
LudovicTOURMAN committed Jan 3, 2024
1 parent 2f2fb7d commit 1fda9fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,8 @@ jobs:
env:
EXPECTED_LOG_MESSAGE: "### Env: ${{ matrix.environment }} ###"
with:
expected: "true"
actual: ${{ fromJson(steps.named-run-workflow.outputs.workflow-logs).echo.*.message == env.EXPECTED_LOG_MESSAGE }}
expected: true
actual: ${{ contains(fromJson(steps.named-run-workflow.outputs.workflow-logs).echo.*.message, env.EXPECTED_LOG_MESSAGE) }}

deploy:
needs:
Expand Down

0 comments on commit 1fda9fc

Please sign in to comment.