From 60344070eee5d27b0e4960af1956343d3fba2f59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Fr=C3=A9mont?= Date: Fri, 17 May 2024 15:50:47 +0200 Subject: [PATCH] Fix PHPUnit tests --- tests/Bundle/Resource/ResourceServicesTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Bundle/Resource/ResourceServicesTest.php b/tests/Bundle/Resource/ResourceServicesTest.php index 636e59388..d95ab6208 100644 --- a/tests/Bundle/Resource/ResourceServicesTest.php +++ b/tests/Bundle/Resource/ResourceServicesTest.php @@ -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); } }