From 3b9fb972daa5da51db6396df8d7ae8c6126aa423 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 13 Apr 2026 10:58:29 +0100 Subject: [PATCH] test(release): align pack size budget assertion --- test/release-check.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/release-check.test.ts b/test/release-check.test.ts index 2f7d647ee01..39b2cfd205b 100644 --- a/test/release-check.test.ts +++ b/test/release-check.test.ts @@ -366,7 +366,7 @@ describe("collectPackUnpackedSizeErrors", () => { expect( collectPackUnpackedSizeErrors([makePackResult("openclaw-2026.3.12.tgz", 224_002_564)]), ).toEqual([ - "openclaw-2026.3.12.tgz unpackedSize 224002564 bytes (213.6 MiB) exceeds budget 200278016 bytes (191.0 MiB). Investigate duplicate channel shims, copied extension trees, or other accidental pack bloat before release.", + "openclaw-2026.3.12.tgz unpackedSize 224002564 bytes (213.6 MiB) exceeds budget 211812352 bytes (202.0 MiB). Investigate duplicate channel shims, copied extension trees, or other accidental pack bloat before release.", ]); });