diff --git a/core/modules/editor/lib/Drupal/editor/Tests/EditorFileUsageTest.php b/core/modules/editor/lib/Drupal/editor/Tests/EditorFileUsageTest.php index 80c14e9..184d849 100644 --- a/core/modules/editor/lib/Drupal/editor/Tests/EditorFileUsageTest.php +++ b/core/modules/editor/lib/Drupal/editor/Tests/EditorFileUsageTest.php @@ -33,6 +33,7 @@ public function setUp() { parent::setUp(); $this->installEntitySchema('node'); $this->installEntitySchema('file'); + $this->installSchema('node', array('node_access')); $this->installSchema('file', array('file_usage')); // Add text formats. diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageItemTest.php b/core/modules/image/lib/Drupal/image/Tests/ImageItemTest.php index 11b29a7..e17987b 100644 --- a/core/modules/image/lib/Drupal/image/Tests/ImageItemTest.php +++ b/core/modules/image/lib/Drupal/image/Tests/ImageItemTest.php @@ -48,7 +48,7 @@ public function setUp() { parent::setUp(); $this->installEntitySchema('file'); - $this->installEntitySchema('file', array('file_usage')); + $this->installSchema('file', array('file_usage')); entity_create('field_config', array( 'name' => 'image_test', diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityCrudHookTest.php b/core/modules/system/lib/Drupal/system/Tests/Entity/EntityCrudHookTest.php index e4bb92f..fa701a7 100644 --- a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityCrudHookTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/Entity/EntityCrudHookTest.php @@ -48,6 +48,7 @@ public function setUp() { $this->installEntitySchema('node'); $this->installEntitySchema('comment'); + $this->installSchema('user', array('users_data')); $this->installSchema('file', array('file_usage')); $this->installSchema('node', array('node_access')); $this->installSchema('comment', array('comment_entity_statistics'));