Lower size/time-taken in base64 test

This sometimes fails in CI, as the GHA machines are slower than my own.
This commit is contained in:
Jonathan Coates
2026-07-05 11:23:20 +01:00
parent 1fa227d573
commit 3404dcbbd8
@@ -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