diff --git a/tests/kola/containers/quadlet/config.bu b/tests/kola/containers/quadlet/config.bu index f137415b0b..667ff1bc59 100644 --- a/tests/kola/containers/quadlet/config.bu +++ b/tests/kola/containers/quadlet/config.bu @@ -9,7 +9,7 @@ storage: Description=A minimal container [Container] - Image=quay.io/fedora/fedora-minimal:40 + Image=quay.io/fedora/fedora-minimal:latest Exec=sleep 60 Volume=test.volume:/data Network=test.network diff --git a/tests/kola/containers/quadlet/test.sh b/tests/kola/containers/quadlet/test.sh index 3925b5e73c..75d8a1332a 100755 --- a/tests/kola/containers/quadlet/test.sh +++ b/tests/kola/containers/quadlet/test.sh @@ -32,7 +32,7 @@ if ! is_service_active test.service; then fatal "test-network.service failed to start" fi container_info=$(podman container inspect systemd-test) -if [[ "$(jq -r '.[0].ImageName' <<< "$container_info")" != "quay.io/fedora/fedora-minimal:40" ]]; then +if [[ "$(jq -r '.[0].ImageName' <<< "$container_info")" != "quay.io/fedora/fedora-minimal:latest" ]]; then fatal "Container not using the correct image" fi if [[ "$(jq -r '.[0].NetworkSettings.Networks[].NetworkID' <<< "$container_info")" != "systemd-test" ]]; then