Skip to content

Commit

Permalink
more time for proxy tests
Browse files Browse the repository at this point in the history
  • Loading branch information
matthi4s committed Oct 23, 2023
1 parent a4577d8 commit b9cdfcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Environment/ProxiedWorkerTestTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ abstract protected function addTasks(TaskInterface $task, int $amount): array;
public function testTasksFailOnProxyDeath(): void
{
/** @var SleepStatusTask $tasks */
$tasks = $this->addTasks(new SleepStatusTask(10000), 3);
$tasks = $this->addTasks(new SleepStatusTask(100000), 3);
do {
$this->taskmaster->update();
$runningTasks = 0;
Expand All @@ -43,7 +43,7 @@ public function testTasksFailOnProxyDeath(): void
public function testProxyRestartsAfterFail(): void
{
/** @var SleepStatusTask $tasks */
$tasks = $this->addTasks(new SleepStatusTask(10000), 6);
$tasks = $this->addTasks(new SleepStatusTask(100000), 6);
do {
$this->taskmaster->update();
$runningTasks = 0;
Expand Down

0 comments on commit b9cdfcb

Please sign in to comment.