fix(fleet): update BASE_IMAGE test to allow digest-pinned image refs

This commit is contained in:
2026-05-10 04:51:18 -04:00
parent f11def0af1
commit 92f43b4655

View File

@@ -78,7 +78,7 @@ def test_build_service_base_image_matches_distro(distro, expected_build_base):
config = _make_config(["http"], distro=distro)
compose = generate_compose(config)
fragment = compose["services"]["decky-01-http"]
assert fragment["build"]["args"]["BASE_IMAGE"] == expected_build_base
assert fragment["build"]["args"]["BASE_IMAGE"].startswith(expected_build_base)
# ---------------------------------------------------------------------------