Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Dec 13, 2024
1 parent 34bd942 commit cf72829
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/framework/tests/Unit/FilesystemFindFilesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ public function testFindFilesWithCaseInsensitiveFilenames()

public function testFindFilesHandlesLargeNumberOfFiles()
{
$this->files(array_map(fn($i) => "directory/file$i.md", range(1, 100)));
$this->assertSameArray(array_map(fn($i) => "file$i.md", range(1, 100)), 'directory');
$this->files(array_map(fn ($i) => "directory/file$i.md", range(1, 100)));
$this->assertSameArray(array_map(fn ($i) => "file$i.md", range(1, 100)), 'directory');
}

public function testFindFilesWithEmptyDirectory()
Expand Down

0 comments on commit cf72829

Please sign in to comment.