Skip to content

Commit e5b9842

Browse files
generatedunixname1431085361989520meta-codesync[bot]
authored andcommitted
Fix broken fbcode//hphp/hsl:typecheck - unmanaged caused by D111854560
Reviewed By: viratyosin Differential Revision: D112244812 fbshipit-source-id: 49cfd21e2a42472641c3c8abba676ae13be6277c
1 parent 6634ce6 commit e5b9842

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/async/PollTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public static function provideTestInputs(
148148
* fail due to stack overflow.
149149
*/
150150
public async function testLongChain(): Awaitable<void> {
151-
$iterations = 70_000;
151+
$iterations = 70000;
152152
$poll = Async\Poll::create();
153153

154154
$count = new Ref(0);
@@ -183,7 +183,7 @@ public static function provideTestInputs(
183183
* Same as testLongChain, but using `addMulti` instead.
184184
*/
185185
public async function testLongChainMulti(): Awaitable<void> {
186-
$iterations = 70_000;
186+
$iterations = 70000;
187187
$poll = Async\Poll::create();
188188

189189
$count = new Ref(0);

0 commit comments

Comments
 (0)