diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigImportTest.php b/core/modules/config/lib/Drupal/config/Tests/ConfigImportTest.php index b659ace..7cc3ef0 100644 --- a/core/modules/config/lib/Drupal/config/Tests/ConfigImportTest.php +++ b/core/modules/config/lib/Drupal/config/Tests/ConfigImportTest.php @@ -90,14 +90,6 @@ function testDeleted() { $config = config($dynamic_name); $this->assertIdentical($config->get('id'), NULL); - // Verify that appropriate module API hooks have been invoked. - $this->assertTrue(isset($GLOBALS['hook_config_test']['load'])); - $this->assertFalse(isset($GLOBALS['hook_config_test']['presave'])); - $this->assertFalse(isset($GLOBALS['hook_config_test']['insert'])); - $this->assertFalse(isset($GLOBALS['hook_config_test']['update'])); - $this->assertTrue(isset($GLOBALS['hook_config_test']['predelete'])); - $this->assertTrue(isset($GLOBALS['hook_config_test']['delete'])); - // Verify that there is nothing more to import. $this->assertFalse(config_sync_get_changes($staging, $storage)); }