Skip to content

Commit 8f1ea10

Browse files
committed
Fix run notifications smoke test variable check
1 parent bebe7f0 commit 8f1ea10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/terraform/terraform.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ terraform-validate: terraform-init-no-backend # Validate Terraform changes - mak
7676
terraform -chdir=infrastructure/terraform validate
7777

7878
notifications-smoke-test:
79-
$(if ${TF_VAR_run_notifications_smoke_test}, \
79+
$(if [ "${TF_VAR_run_notifications_smoke_test}" = "true" ], \
8080
pip install pytest mesh-client \
8181
pytest -vv scripts/python/smoke_test/notifications_smoke_test.py, \
8282
echo "Notifications smoke test skipped." \

0 commit comments

Comments
 (0)