From fe0e27df6d83cabf1d623e1648797bfbfdf5c31e Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 12 Aug 2026 05:58:48 +0000 Subject: [PATCH] Expect 48 files in pmm-admin summary zip (sep-provision.log) percona/pmm#5755 adds a sep-provision supervisord program whose stdout log, /srv/logs/sep-provision.log, is collected into the server's logs.zip. The @generic summary test still expects 47 files, so it fails with 48 on any build carrying that change - first seen on the PMM-15205 SEP feature build. Signed-off-by: Claude --- cli/tests/generic.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/tests/generic.spec.ts b/cli/tests/generic.spec.ts index b956c9720..52b193594 100644 --- a/cli/tests/generic.spec.ts +++ b/cli/tests/generic.spec.ts @@ -196,7 +196,7 @@ test.describe('PMM Client "Generic" CLI tests', { tag: '@generic' }, async () => const zipName = output.getStdOutLines().find((item) => item.includes('.zip created.'))! .split(' ').at(0) ?? ''; const filesInZip = await readZipFile(zipName); - expect(filesInZip, `Verify there are 47 files in ${zipName}.\n ${JSON.stringify(filesInZip, null, 2)}`).toHaveLength(47); + expect(filesInZip, `Verify there are 48 files in ${zipName}.\n ${JSON.stringify(filesInZip, null, 2)}`).toHaveLength(48); }); /**