You are here

function system_post_update_uninstall_simpletest in Drupal 9

Uninstall SimpleTest.

See also

https://www.drupal.org/project/drupal/issues/3110862

File

core/modules/system/system.post_update.php, line 74
Post update functions for System.

Code

function system_post_update_uninstall_simpletest() {
  \Drupal::service('module_installer')
    ->uninstall([
    'simpletest',
  ]);
}