diff --git a/core/modules/system/lib/Drupal/system/Tests/Upgrade/SystemUpgradePathTest.php b/core/modules/system/lib/Drupal/system/Tests/Upgrade/SystemUpgradePathTest.php index 471e2d8..3139d8b 100644 --- a/core/modules/system/lib/Drupal/system/Tests/Upgrade/SystemUpgradePathTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/Upgrade/SystemUpgradePathTest.php @@ -159,6 +159,10 @@ public function testVariableUpgrade() { 'child_type' => 'book', ); + $expected_config['aggregator.settings'] = array( + 'fetcher' => 'test_fetcher', + ); + foreach ($expected_config as $file => $values) { $config = config($file); $this->verbose(print_r($config->get(), TRUE)); diff --git a/core/modules/system/tests/upgrade/drupal-7.system.database.php b/core/modules/system/tests/upgrade/drupal-7.system.database.php index e8502cc..a725cea 100644 --- a/core/modules/system/tests/upgrade/drupal-7.system.database.php +++ b/core/modules/system/tests/upgrade/drupal-7.system.database.php @@ -135,6 +135,10 @@ 'name' => 'fast_404_html', 'value' => 's:168:"Page Not Found

Page Not Found

The requested URL "@path" was not found on this server.

";', )) + ->values(array( + 'name' => 'aggregator_fetcher', + 'value' => 'test_fetcher', + )) ->execute(); db_update('variable')