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 f6aa860 commit 2117f7e
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(): void
->usingPool(ConnectionLimitingPool::byAuthority(1))
->build();

$this->setTimeout(5);
$this->setMinimumRuntime(2);

Future\await([
Expand All @@ -46,7 +45,7 @@ public function testTwoConnections(): void
->usingPool(ConnectionLimitingPool::byAuthority(2))
->build();

$this->setTimeout(4);
$this->setTimeout(6);
$this->setMinimumRuntime(2);

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

$this->setTimeout(5);
$this->setMinimumRuntime(2);

Future\await([
Expand Down

0 comments on commit 2117f7e

Please sign in to comment.