From 962cc65a3c61cd40a3b4e26a8426afccbecaa709 Mon Sep 17 00:00:00 2001 From: Nidhi Date: Fri, 7 Oct 2022 13:03:11 +0530 Subject: [PATCH] chore: Corrected usage of OR operator (#17379) --- .github/workflows/integration-tests-command.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests-command.yml b/.github/workflows/integration-tests-command.yml index 9172d7c421..2a48f6a331 100644 --- a/.github/workflows/integration-tests-command.yml +++ b/.github/workflows/integration-tests-command.yml @@ -950,7 +950,7 @@ jobs: run: echo "$PAYLOAD_CONTEXT" - name: Check ui-test set status - if: needs.ui-test.result != 'success' or needs.fat-container-test.result != 'success' + if: needs.ui-test.result != 'success' || needs.fat-container-test.result != 'success' run: exit 1 package: