test: s3 fix

This commit is contained in:
Luke McCrone
2026-08-21 10:59:08 -03:00
parent 3abc67c569
commit 1d2f39175a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -123,7 +123,7 @@ source_config_file() {
if [ -r tests/.env ]; then
source tests/.env
else
echo "Warning: no .env file found in tests folder" > /dev/stderr
echo "Warning: no .env file found in tests folder" >&2
fi
else
# shellcheck source=./tests/.env.default
+1 -1
View File
@@ -218,7 +218,7 @@ run_versity_app() {
if [[ $IAM_TYPE != "s3" ]]; then
return 0
fi
if bucket_exists "$USERS_BUCKET"; then
if bucket_exists "$USERS_BUCKET" >/dev/null; then
return 0
fi
if ! create_bucket "s3api" "$USERS_BUCKET"; then