Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / views / tests / src / Functional / Update / EntityViewsDataUpdateFilledTest.php
1 <?php
2
3 namespace Drupal\Tests\views\Functional\Update;
4
5 /**
6  * Runs EntityViewsDataUpdateTest with a dump filled with content.
7  *
8  * @group Update
9  */
10 class EntityViewsDataUpdateFilledTest extends EntityViewsDataUpdateTest {
11
12   /**
13    * {@inheritdoc}
14    */
15   protected function setDatabaseDumpFiles() {
16     parent::setDatabaseDumpFiles();
17     $this->databaseDumpFiles[0] = __DIR__ . '/../../../../../system/tests/fixtures/update/drupal-8.filled.standard.php.gz';
18   }
19
20 }