chore(deps): update unittests/bash/bats digest to a8d1100 #25

Merged
williamp merged 2 commits from renovate/bats-testing-framework into main 2026-02-14 12:14:20 +00:00
Showing only changes of commit ffc769c8e5 - Show all commits

View File

@@ -39,7 +39,8 @@ function execute_test_script() {
currentEnvsAfter=$(env | sort) currentEnvsAfter=$(env | sort)
# diff as unified +/- output without context before/after # diff as unified +/- output without context before/after
diff --unified=0 <(echo "$currentEnvsBefore") <(echo "$currentEnvsAfter") # non-zero value returned when differences exist, which is expected
diff --unified=0 <(echo "$currentEnvsBefore") <(echo "$currentEnvsAfter") || true
exit $exitCode exit $exitCode
} }