From 33c7c2e962c960d8f1c798e189b96ddbd2c62723 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 12 Aug 2026 07:02:38 +0000 Subject: [PATCH] PMM-15280 Expect 48 files in pmm-admin summary zip percona/pmm#5755 adds the sep-provision supervisord program, whose stdout_logfile /srv/logs/sep-provision.log is collected into the server logs.zip on every install, SEP enabled or not. The summary archive therefore holds one more file than the hard-coded 47. Blocked on percona/pmm#5755 -- expected red on main until it lands. 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); }); /**