From: =?utf-8?q?David_Pr=C3=A9vot?= <david@tilapin.org>
Date: Sat, 11 Jan 2025 14:40:29 +0100
Subject: Drop test failing with PHPUnit 11

---
 Service/Test/ServiceLocatorTestCase.php | 13 -------------
 1 file changed, 13 deletions(-)

diff --git a/Service/Test/ServiceLocatorTestCase.php b/Service/Test/ServiceLocatorTestCase.php
index 00f8602..f8d1956 100644
--- a/Service/Test/ServiceLocatorTestCase.php
+++ b/Service/Test/ServiceLocatorTestCase.php
@@ -66,19 +66,6 @@ abstract class ServiceLocatorTestCase extends TestCase
         $this->assertSame(2, $i);
     }
 
-    public function testThrowsOnUndefinedInternalService()
-    {
-        $locator = $this->getServiceLocator([
-            'foo' => function () use (&$locator) { return $locator->get('bar'); },
-        ]);
-
-        $this->expectException(NotFoundExceptionInterface::class);
-        $this->expectExceptionMessage('The service "foo" has a dependency on a non-existent service "bar". This locator only knows about the "foo" service.');
-        }
-
-        $locator->get('foo');
-    }
-
     public function testThrowsOnCircularReference()
     {
         $locator = $this->getServiceLocator([
