Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / system / tests / modules / module_test / module_test.install
index 5f3f6f654c9e4891bc8404aca769ee0496160bc6..b76b7936f5c3229f13e0566c7bcf49368f034239 100644 (file)
@@ -34,4 +34,9 @@ function module_test_install() {
       'data' => $schema['fields']['data']['type'],
     ])
     ->execute();
+  if (\Drupal::state()->get('module_test_install:rebuild_container')) {
+    // Ensure that the container can be rebuilt during hook_install(). Doing
+    // this in hook_install() is bad practice but it should not break anything.
+    \Drupal::service('kernel')->rebuildContainer();
+  }
 }