diff --git a/core/modules/rest/tests/src/Kernel/Entity/ConfigDependenciesTest.php b/core/modules/rest/tests/src/Kernel/Entity/ConfigDependenciesTest.php index b9a9062..cd2d28b 100644 --- a/core/modules/rest/tests/src/Kernel/Entity/ConfigDependenciesTest.php +++ b/core/modules/rest/tests/src/Kernel/Entity/ConfigDependenciesTest.php @@ -21,7 +21,6 @@ class ConfigDependenciesTest extends KernelTestBase { /** * @covers ::calculateDependencies - * @covers ::calculateDependenciesForMethodGranularity */ public function testCalculateDependencies() { $config_dependencies = new ConfigDependencies(['hal_json' => 'hal', 'json' => 'serialization'], ['basic_auth' => 'basic_auth']); @@ -49,7 +48,6 @@ public function testCalculateDependencies() { /** * @covers ::onDependencyRemoval - * @covers ::calculateDependenciesForMethodGranularity */ public function testOnDependencyRemovalRemoveUnrelatedDependency() { $config_dependencies = new ConfigDependencies(['hal_json' => 'hal', 'json' => 'serialization'], ['basic_auth' => 'basic_auth']); @@ -84,7 +82,6 @@ public function testOnDependencyRemovalRemoveUnrelatedDependency() { /** * @covers ::onDependencyRemoval - * @covers ::calculateDependenciesForMethodGranularity */ public function testOnDependencyRemovalRemoveFormat() { $config_dependencies = new ConfigDependencies(['hal_json' => 'hal', 'json' => 'serialization'], ['basic_auth' => 'basic_auth']); @@ -120,7 +117,6 @@ public function testOnDependencyRemovalRemoveFormat() { /** * @covers ::onDependencyRemoval - * @covers ::calculateDependenciesForMethodGranularity */ public function testOnDependencyRemovalRemoveAuth() { $config_dependencies = new ConfigDependencies(['hal_json' => 'hal', 'json' => 'serialization'], ['basic_auth' => 'basic_auth']); @@ -156,7 +152,6 @@ public function testOnDependencyRemovalRemoveAuth() { /** * @covers ::onDependencyRemoval - * @covers ::calculateDependenciesForMethodGranularity */ public function testOnDependencyRemovalRemoveAuthAndFormats() { $config_dependencies = new ConfigDependencies(['hal_json' => 'hal', 'json' => 'serialization'], ['basic_auth' => 'basic_auth']);