Skip to content

Commit

Permalink
fix name generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Baptouuuu committed Oct 22, 2023
1 parent 4566d0a commit 3ae963f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/NameTest.php
Expand Up @@ -144,7 +144,7 @@ public function testNamesLongerThan255AreNotAccepted()
...\range(48, 127),
),
),
)->between(255, 1024), // upper limit at 1024 to avoid out of memory
)->between(256, 1024), // upper limit at 1024 to avoid out of memory
)->filter(static fn(string $name): bool => $name !== '.' && $name !== '..'),
)
->then(function($name) {
Expand Down

0 comments on commit 3ae963f

Please sign in to comment.