From edf0c6cdefab5a892c0ca27f6d1545dc75b600de Mon Sep 17 00:00:00 2001 From: Anirban Mukhopadhyay Date: Tue, 30 Jul 2024 00:00:33 -0700 Subject: [PATCH] Fix tests --- tests/tests.bats | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/tests.bats b/tests/tests.bats index 341e6369..1d1aeaa0 100644 --- a/tests/tests.bats +++ b/tests/tests.bats @@ -94,7 +94,10 @@ base_image=eclipse-temurin-11 @test "$SUT_TAG curl is installed" { run docker run --rm $SUT_IMAGE:$SUT_TAG curl --version - if [[ "$SUT_TAG" == amazoncorretto-*-debian ]]; then + if ( + [[ "$SUT_TAG" == amazoncorretto-*-debian ]] || + [[ "$SUT_TAG" == azulzulu-*-debian ]] + ); then [ $status -ne 0 ] else [ $status -eq 0 ]