only in patch2: unchanged: --- a/core/modules/system/lib/Drupal/system/Tests/Upgrade/SystemUpgradePathTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/Upgrade/SystemUpgradePathTest.php @@ -115,7 +115,10 @@ public function testVariableUpgrade() { public function testFrontpageUpgrade() { $this->assertTrue($this->performUpgrade(), 'The upgrade was completed successfully.'); - $this->assertTrue(module_exists('views'), 'Views is enabled after the upgrade.'); + $this->assertTrue($this->container->get('module_handler')-moduleExists('views'), 'Views is enabled after the upgrade.'); + $views = $this->container->get('plugin.manager.entity')->getStorageController('view')->load(array('frontpage')); + $view = reset($views); + $this->assertTrue($view->isEnabled(), 'The frontpage view is enabled after the upgrade.'); } } only in patch2: unchanged: --- a/core/modules/system/system.install +++ b/core/modules/system/system.install @@ -2039,6 +2039,8 @@ function system_update_8046() { // This does not fire a hook just calls views. config_install_default_config('module', 'views'); + // This imports the node frontpage view. + config_install_default_config('module', 'node'); } }