diff -u b/core/modules/update/tests/modules/update_test/update_test.module b/core/modules/update/tests/modules/update_test/update_test.module --- b/core/modules/update/tests/modules/update_test/update_test.module +++ b/core/modules/update/tests/modules/update_test/update_test.module @@ -42,13 +42,13 @@ /** * Implements hook_system_info_alter(). * - * Checks the 'system_info' setting and sees if we need to alter - * the system info for the given $file based on the setting. The setting is - * expected to be a nested associative array. If the key '#all' is defined, its - * subarray will include .info keys and values for all modules and themes on the - * system. Otherwise, the settings array is keyed by the module or theme short - * name ($file->name) and the subarrays contain settings just for that module or - * theme. + * Checks the 'update_test.settings:system_info' setting and sees if we need to + * alter the system info for the given $file based on the setting. The setting + * is expected to be a nested associative array. If the key '#all' is defined, + * its subarray will include .info keys and values for all modules and themes on + * the system. Otherwise, the settings array is keyed by the module or theme + * short name ($file->name) and the subarrays contain settings just for that + * module or theme. */ function update_test_system_info_alter(&$info, $file) { $setting = config('update_test.settings')->get('system_info'); @@ -64,12 +64,13 @@ /** * Implements hook_update_status_alter(). * - * Checks the 'update_status' setting and sees if we need to alter - * the update status for the given project based on the setting. The setting is - * expected to be a nested associative array. If the key '#all' is defined, its - * subarray will include .info keys and values for all modules and themes on the - * system. Otherwise, the settings array is keyed by the module or theme short - * name and the subarrays contain settings just for that module or theme. + * Checks the 'update_test.settings:update_status' setting and sees if we need + * to alter the update status for the given project based on the setting. The + * setting is expected to be a nested associative array. If the key '#all' is + * defined, its subarray will include .info keys and values for all modules and + * themes on the system. Otherwise, the settings array is keyed by the module or + * theme short name and the subarrays contain settings just for that module or + * theme. */ function update_test_update_status_alter(&$projects) { $setting = config('update_test.settings')->get('update_status');