1
0
Fork 0
mirror of synced 2024-06-03 11:24:48 +12:00

Test bug fix

This commit is contained in:
Matej Baco 2021-12-20 16:37:17 +01:00
parent e46b99b0a6
commit 27a43beddc

View file

@ -758,7 +758,7 @@ trait AccountBase
$prefsObject = [];
// Add 1024 keys
for($i = 1000; $i < 2024; $i++) {
$prefsObject["key" + $i] = "HelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHel";
$prefsObject["key" . $i] = "HelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHel";
// Each key is 7 characters and value is 63 characters
}
// That makes total size minimum of 70kB, plus any JSON stuff. Max supported is 64kB, so this should exceed.