Skip to content

Commit

Permalink
Increase timeouts for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
trowski committed Dec 13, 2024
1 parent 6cac9e1 commit 96052ec
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions test/Connection/ConnectionLimitingPoolTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ public function testSingleConnection(): \Generator
->usingPool(ConnectionLimitingPool::byAuthority(1))
->build();

$this->setTimeout(5000);
$this->setMinimumRuntime(2000);

yield [
Expand All @@ -38,7 +37,7 @@ public function testTwoConnections(): \Generator
->usingPool(ConnectionLimitingPool::byAuthority(2))
->build();

$this->setTimeout(4000);
$this->setTimeout(6000);
$this->setMinimumRuntime(2000);

yield [
Expand Down
1 change: 0 additions & 1 deletion test/Connection/StreamLimitingPoolTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ public function testByHost(): \Generator
->usingPool(StreamLimitingPool::byHost(new UnlimitedConnectionPool, new LocalKeyedMutex))
->build();

$this->setTimeout(5000);
$this->setMinimumRuntime(2000);

yield [
Expand Down

0 comments on commit 96052ec

Please sign in to comment.