diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeReviewPageTestBase.php b/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeReviewPageTestBase.php index e115b88..1763413 100644 --- a/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeReviewPageTestBase.php +++ b/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeReviewPageTestBase.php @@ -54,7 +54,6 @@ protected function getSourceBasePath() { * * Note that this assumption here is that the Drupal 6 and Drupal 7 test * fixtures include all modules that have moved to Drupal 8 core. - * */ public function testMigrateUpgradeReviewPage() { $connection_options = $this->sourceDatabase->getConnectionOptions(); @@ -85,13 +84,13 @@ public function testMigrateUpgradeReviewPage() { // Enable all modules in the source $this->sourceDatabase->update('system') - ->fields(['status' => 1]) + ->fields(['status' => 1]) ->condition('type', 'module') ->condition('name', '%test%', 'NOT LIKE') ->condition('name', '%example%', 'NOT LIKE') ->execute(); $this->sourceDatabase->update('system') - ->fields(['status' => 1]) + ->fields(['status' => 1]) ->condition('type', 'module') ->condition('name', 'simpletest') ->execute(); @@ -114,9 +113,9 @@ public function testMigrateUpgradeReviewPage() { $available_paths = $this->getAvailablePaths(); $missing_paths = $this->getMissingPaths(); $this->assertUpgradePaths($session, $available_paths, $missing_paths); - } + } - /** + /** * {@inheritdoc} */ protected function getEntityCounts() {