databaseDumpFiles = [ __DIR__ . '/../../../../../system/tests/fixtures/update/drupal-8.filled.standard.php.gz', ]; } /** * Tests language_post_update_language_select_widget(). */ public function testLanguagePostUpdateLanguageSelectWidget() { // Tests before the update. $content_before = EntityFormDisplay::load('node.page.default')->get('content'); $this->assertEqual([], $content_before['langcode']['settings']); // Run the update. $this->runUpdates(); // Tests after the update. $content_after = EntityFormDisplay::load('node.page.default')->get('content'); $this->assertEqual(['include_locked' => TRUE], $content_after['langcode']['settings']); } }