unset($parameters['forms'
]['install_configure_form'
]['enable_update_status_module'
]);
unset($parameters['forms'
]['install_configure_form'
]['enable_update_status_emails'
]);
return $parameters;
} /**
* Confirms that the installation installed the configuration correctly.
*/
public function testConfigSync() { // After installation there is no snapshot and nothing to import.
$change_list =
$this->
configImporter()->
getStorageComparer()->
getChangelist();
$expected =
[ 'create' =>
[],
// The system.mail is changed configuration because the test system
// changes it to ensure that mails are not sent.
'update' =>
['system.mail'
],
'delete' =>
[],
'rename' =>
[],
];
$this->
assertEquals($expected,
$change_list);
}