e26fb88029ed1ccf6811624ee85c7dc450b5ab64
[yaffs-website] / web / core / modules / system / tests / src / Functional / Entity / Update / LangcodeToAsciiUpdateFilledTest.php
1 <?php
2
3 namespace Drupal\Tests\system\Functional\Entity\Update;
4
5 /**
6  * Runs LangcodeToAsciiUpdateTest with a dump filled with content.
7  *
8  * @group Entity
9  * @group legacy
10  */
11 class LangcodeToAsciiUpdateFilledTest extends LangcodeToAsciiUpdateTest {
12
13   /**
14    * {@inheritdoc}
15    */
16   public function setDatabaseDumpFiles() {
17     $this->databaseDumpFiles = [
18       __DIR__ . '/../../../../fixtures/update/drupal-8.filled.standard.php.gz',
19     ];
20   }
21
22 }