Updated Drupal to 8.6. This goes with the following updates because it's possible...
[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  * @group legacy
10  */
11 class BlockContextMappingUpdateFilledTest extends BlockContextMappingUpdateTest {
12
13   /**
14    * {@inheritdoc}
15    */
16   protected function setDatabaseDumpFiles() {
17     parent::setDatabaseDumpFiles();
18     $this->databaseDumpFiles[0] = __DIR__ . '/../../../../../system/tests/fixtures/update/drupal-8.filled.standard.php.gz';
19   }
20
21 }