only in patch2: unchanged: --- a/core/modules/config/src/Tests/ConfigImportAllTest.php +++ b/core/modules/config/src/Tests/ConfigImportAllTest.php @@ -9,6 +9,7 @@ use Drupal\Core\Config\StorageComparer; use Drupal\system\Tests\Module\ModuleTestBase; +use Drupal\shortcut\Entity\Shortcut; /** * Tests the largest configuration import possible with the modules and profiles @@ -83,6 +84,10 @@ public function testInstallUninstall() { $term->delete(); } + // Delete any shortcuts so the shortcut module can be uninstalled. + $shortcuts = Shortcut::loadMultiple(); + entity_delete_multiple('shortcut', array_keys($shortcuts)); + system_list_reset(); $all_modules = system_rebuild_module_data();