Skip to content

Commit

Permalink
naming
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Jul 29, 2023
1 parent 4115750 commit b4cbe14
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions src/Finder/OldToNewFilesFinder.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
use Symplify\VendorPatches\Composer\PackageNameResolver;
use Symplify\VendorPatches\ValueObject\OldAndNewFile;

/**
* @see \Symplify\VendorPatches\Tests\Finder\OldToNewFilesFinderTest
*/
final class OldToNewFilesFinder
{
public function __construct(
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
use Symplify\VendorPatches\Finder\OldToNewFilesFinder;
use Symplify\VendorPatches\Tests\AbstractTestCase;

final class VendorFilesFinderTest extends AbstractTestCase
final class OldToNewFilesFinderTest extends AbstractTestCase
{
public function test(): void
{
$oldToNewFilesFinder = $this->make(OldToNewFilesFinder::class);

$files = $oldToNewFilesFinder->find(__DIR__ . '/VendorFilesFinderSource');
$files = $oldToNewFilesFinder->find(__DIR__ . '/Fixture');
$this->assertCount(2, $files);
}
}

0 comments on commit b4cbe14

Please sign in to comment.