Skip to content

Commit

Permalink
fix(tests): wrong symbol for accessing variable
Browse files Browse the repository at this point in the history
  • Loading branch information
aldy505 committed Feb 4, 2025
1 parent ad8af55 commit 69fb14d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _unit-test/merge-env-file-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ EOF
# The `_test_setup.sh` script sources `install/_lib.sh`, so.. finger crossed this should works.
source _unit-test/_test_setup.sh

echo "Expecting SENTRY_EVENT_RETENTION_DAYS to be 10, got $(SENTRY_EVENT_RETENTION_DAYS)"
echo "Expecting SENTRY_EVENT_RETENTION_DAYS to be 10, got ${SENTRY_EVENT_RETENTION_DAYS}"
test "$SENTRY_EVENT_RETENTION_DAYS" == "10"
echo "Pass"
echo "Expecting SENTRY_BIND to be 9000, got $(SENTRY_BIND)"
echo "Expecting SENTRY_BIND to be 9000, got ${SENTRY_BIND}"
test "$SENTRY_BIND" == "9000"
echo "Pass"
echo "Expecting COMPOSE_PROJECT_NAME to be sentry-self-hosted, got $(COMPOSE_PROJECT_NAME)"
echo "Expecting COMPOSE_PROJECT_NAME to be sentry-self-hosted, got ${COMPOSE_PROJECT_NAME}"
test "$COMPOSE_PROJECT_NAME" == "sentry-self-hosted"
echo "Pass"

Expand Down

0 comments on commit 69fb14d

Please sign in to comment.