diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 9fe54169..f26f9f12 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -124,7 +124,7 @@ jobs: PSYCOPG2_NAME="${PSYCOPG2_PIP_ENTRY%% *}" echo $PSYCOPG2_NAME - if [[ "${PSYCOPG2_NAME}" != "${PSYCOPG2_EXPECTED_NAME}" ]]; then + if [[ "$PSYCOPG2_NAME" != "$PSYCOPG2_EXPECTED_NAME" ]]; then exit 1 fi env: @@ -138,7 +138,7 @@ jobs: PSYCOPG2_NAME="${PSYCOPG2_PIP_ENTRY%% *}" echo $PSYCOPG2_NAME - if [[ "${PSYCOPG2_NAME}" != "${PSYCOPG2_EXPECTED_NAME}" ]]; then + if [[ "$PSYCOPG2_NAME" != "$PSYCOPG2_EXPECTED_NAME" ]]; then exit 1 fi env: @@ -153,7 +153,7 @@ jobs: PSYCOPG2_NAME="${PSYCOPG2_PIP_ENTRY%% *}" echo $PSYCOPG2_NAME - if [[ "${PSYCOPG2_NAME}" != "${PSYCOPG2_EXPECTED_NAME}" ]]; then + if [[ "$PSYCOPG2_NAME" != "$PSYCOPG2_EXPECTED_NAME" ]]; then exit 1 fi env: