Skip to content

Commit

Permalink
fix generating invalid value
Browse files Browse the repository at this point in the history
  • Loading branch information
Baptouuuu committed Jun 29, 2024
1 parent 50f80be commit 23ea04b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Model/Connection/MaxChannelsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public function testThrowWhenVerifyingNumberAboveMaxAllowed()
{
$this
->forAll(
Set\Integers::between(0, 65535), // max allowed by the specification 0.9.1
Set\Integers::between(1, 65535), // max allowed by the specification 0.9.1, minimum of 1 as 0 means unlimited
Set\Integers::between(1, 65535),
)
->then(function($allowed, $extraNumber) {
Expand Down

0 comments on commit 23ea04b

Please sign in to comment.