From 062938b8feb19044dda26cdb2c2fe5d663aeaebe Mon Sep 17 00:00:00 2001 From: Mathew Jacob <5201181+matjic@users.noreply.github.com> Date: Mon, 11 May 2026 00:15:04 -0500 Subject: [PATCH] test: bump expected manifest image count to match current releases release_mici and release_tizi dropped to 32 partitions (no userdata_30); release_tici still has 33. The hardcoded 33 assertion was failing in CI for any branch built off master. --- src/utils/manifest.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/manifest.test.js b/src/utils/manifest.test.js index 3167e825..b89b0867 100644 --- a/src/utils/manifest.test.js +++ b/src/utils/manifest.test.js @@ -38,7 +38,7 @@ for (const [branch, manifestUrl] of Object.entries(config.manifests)) { const images = await getManifest(manifestUrl) // Check all images are present - expect(images.length).toBe(33) + expect(images.length).toBe(branch === 'release_tici' ? 33 : 32) let countGpt = 0