Skip to content

Commit

Permalink
Increase a couple more timeouts for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
trowski committed Dec 13, 2024
1 parent a9d9dc4 commit 9d2ca76
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/Connection/Http1ConnectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public function testUpgrade(): \Generator
public function testTransferTimeout(): \Generator
{
$this->setMinimumRuntime(500);
$this->setTimeout(600);
$this->setTimeout(1000);

[$server, $client] = Socket\createPair();

Expand Down Expand Up @@ -165,7 +165,7 @@ public function testTransferTimeout(): \Generator
public function testInactivityTimeout(): \Generator
{
$this->setMinimumRuntime(500);
$this->setTimeout(1500);
$this->setTimeout(2000);

[$server, $client] = Socket\createPair();

Expand Down
4 changes: 2 additions & 2 deletions test/TimeoutTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public function testTimeoutDuringTlsEnable(): \Generator
}
});

$this->setTimeout(600);
$this->setTimeout(1000);

try {
$uri = "https://" . $server->getAddress() . "/";
Expand Down Expand Up @@ -144,7 +144,7 @@ public function testTimeoutDuringTlsEnableCatchable(): \Generator
}
});

$this->setTimeout(600);
$this->setTimeout(1000);

try {
$uri = "https://" . $server->getAddress() . "/";
Expand Down

0 comments on commit 9d2ca76

Please sign in to comment.