diff --git a/core/tests/Drupal/Tests/Core/Access/AccessManagerTest.php b/core/tests/Drupal/Tests/Core/Access/AccessManagerTest.php index 1eb3d97121af50fc79ec7770d7b480155da35059..efd838d535118d2064a90c3716a42f6ecb212b63 100644 --- a/core/tests/Drupal/Tests/Core/Access/AccessManagerTest.php +++ b/core/tests/Drupal/Tests/Core/Access/AccessManagerTest.php @@ -303,8 +303,7 @@ public function providerTestCheckConjunctions() { */ public function testCheckConjunctions($name, $condition_one, $condition_two, $expected_access) { $this->setupAccessChecker(); - $access_check = new DefinedTestAccessCheck(); - $this->container->register('test_access_defined', $access_check); + $this->container->register('test_access_defined', DefinedTestAccessCheck::class); $this->checkProvider->addCheckService('test_access_defined', 'access', ['_test_access']); $route_collection = new RouteCollection(); @@ -536,8 +535,7 @@ public function providerCheckException() { * Adds a default access check service to the container and the access manager. */ protected function setupAccessChecker() { - $access_check = new DefaultAccessCheck(); - $this->container->register('test_access_default', $access_check); + $this->container->register('test_access_default', DefaultAccessCheck::class); $this->checkProvider->addCheckService('test_access_default', 'access', ['_access']); }