From 3404dcbbd8c61d3de078b06c3113775b0e8f65fc Mon Sep 17 00:00:00 2001 From: Jonathan Coates Date: Sun, 5 Jul 2026 11:22:21 +0100 Subject: [PATCH] Lower size/time-taken in base64 test This sometimes fails in CI, as the GHA machines are slower than my own. --- .../src/test/resources/test-rom/spec/modules/cc/base64_spec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/core/src/test/resources/test-rom/spec/modules/cc/base64_spec.lua b/projects/core/src/test/resources/test-rom/spec/modules/cc/base64_spec.lua index f129813a9..5df78148c 100644 --- a/projects/core/src/test/resources/test-rom/spec/modules/cc/base64_spec.lua +++ b/projects/core/src/test/resources/test-rom/spec/modules/cc/base64_spec.lua @@ -7,7 +7,7 @@ describe("cc.base64", function() it("random strings roundtrip", function() for _ = 1, 1000 do - local len = math.random(1000) + local len = math.random(500) local str = "" for _ = 1, len do str = str .. string.char(math.random(0, 255)) end