comparison core/lib/Drupal/Core/Test/TestRunnerKernel.php @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents c75dbcec494b
children
comparison
equal deleted inserted replaced
4:a9cd425dd02b 5:12f9dff5fda9
29 parent::__construct($environment, $class_loader, FALSE, $app_root); 29 parent::__construct($environment, $class_loader, FALSE, $app_root);
30 30
31 // Prime the module list and corresponding Extension objects. 31 // Prime the module list and corresponding Extension objects.
32 // @todo Remove System module. Needed because 32 // @todo Remove System module. Needed because
33 // \Drupal\Core\Datetime\DateFormatter has a (needless) dependency on the 33 // \Drupal\Core\Datetime\DateFormatter has a (needless) dependency on the
34 // 'date_format' entity, so calls to format_date()/format_interval() cause 34 // 'date_format' entity, so calls to DateFormatter::format() and
35 // a plugin not found exception. 35 // DateFormatter::formatInterval() cause a plugin not found exception.
36 $this->moduleList = [ 36 $this->moduleList = [
37 'system' => 0, 37 'system' => 0,
38 'simpletest' => 0, 38 'simpletest' => 0,
39 ]; 39 ];
40 $this->moduleData = [ 40 $this->moduleData = [