Skip to content

Commit

Permalink
cron
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Jun 8, 2022
1 parent 1bc30e8 commit 5750de4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/JsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function testNumbers(): void
}

$longStrBase = '"a":10,"b":9007199254740992,x="\"c\":10,\"d\":9007199254740992,"';
$longStr = str_repeat($longStrBase, intdiv(isset($_ENV['CI']) ? 17_500_000 : 500_000, strlen($longStrBase)));
$longStr = str_repeat($longStrBase, intdiv(isset($_ENV['CI']) && ($_ENV['GITHUB_EVENT_NAME'] ?? null) === 'cron' ? 7_500_000 : 500_000, strlen($longStrBase)));
foreach ([
['10', '"10"'],
[10, '10'],
Expand Down

0 comments on commit 5750de4

Please sign in to comment.