From 9af5466380cf3aef29a06ea5a3163893befa88da Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 14 Feb 2026 02:05:22 +0000 Subject: [PATCH 1/2] chore(deps): update unittests/bash/bats digest to a8d1100 --- unittests/bash/bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittests/bash/bats b/unittests/bash/bats index 5f12b31..a8d1100 160000 --- a/unittests/bash/bats +++ b/unittests/bash/bats @@ -1 +1 @@ -Subproject commit 5f12b3172105a0f26bce629ff8ae0ac76c4bd61e +Subproject commit a8d11007e4a08523974b17e81ae259c4d5224314 -- 2.49.1 From ffc769c8e5a2bf6cf573b7711bb24ef6bcabe8a7 Mon Sep 17 00:00:00 2001 From: William P Date: Sat, 14 Feb 2026 07:13:16 -0500 Subject: [PATCH 2/2] fix unit test to handle --- .../bash/tests/init-containers/config/config_environment.bats | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/unittests/bash/tests/init-containers/config/config_environment.bats b/unittests/bash/tests/init-containers/config/config_environment.bats index 62364a6..f6bbab4 100644 --- a/unittests/bash/tests/init-containers/config/config_environment.bats +++ b/unittests/bash/tests/init-containers/config/config_environment.bats @@ -39,7 +39,8 @@ function execute_test_script() { currentEnvsAfter=$(env | sort) # 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 } -- 2.49.1