Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / system / tests / src / Functional / Entity / Update / SqlContentEntityStorageSchemaConverterNonTranslatableTest.php
1 <?php
2
3 namespace Drupal\Tests\system\Functional\Entity\Update;
4
5 /**
6  * Tests converting a non-translatable entity type with data to revisionable.
7  *
8  * @group Entity
9  * @group Update
10  * @group legacy
11  */
12 class SqlContentEntityStorageSchemaConverterNonTranslatableTest extends SqlContentEntityStorageSchemaConverterTestBase {
13
14   /**
15    * {@inheritdoc}
16    */
17   protected function setDatabaseDumpFiles() {
18     $this->databaseDumpFiles = [
19       __DIR__ . '/../../../../fixtures/update/drupal-8.0.0-rc1-filled.standard.entity_test_update.php.gz',
20       __DIR__ . '/../../../../fixtures/update/drupal-8.entity-test-schema-converter-enabled.php',
21     ];
22   }
23
24 }