Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / block / tests / src / Functional / Update / BlockContextMappingUpdateFilledTest.php
1 <?php
2
3 namespace Drupal\Tests\block\Functional\Update;
4
5 /**
6  * Runs BlockContextMappingUpdateTest with a dump filled with content.
7  *
8  * @group Update
9  */
10 class BlockContextMappingUpdateFilledTest extends BlockContextMappingUpdateTest {
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 }