Skip to content

Commit

Permalink
Fix PHPUnit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
loic425 committed May 17, 2024
1 parent f253579 commit 6034407
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Bundle/Resource/ResourceServicesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@ public function it_will_return_the_same_repository_instance_for_default_reposito
$repositoryAlias = $em->getRepository(ComicBook::class);

$this->assertInstanceOf(RepositoryInterface::class, $repository);
$this->assertSame($repository, $repositoryAlias);
$this->assertSame($repository::class, $repositoryAlias::class);
}
}

0 comments on commit 6034407

Please sign in to comment.