Verified Commit c5e63487 authored by Dave Long's avatar Dave Long
Browse files

Issue #3416074 by catch, longwave: UpdatePathTestBaseFilledTest is mostly pointless

parent d0677640
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@
 * Create, view, edit, delete, and change shortcut links.
 *
 * @group shortcut
 * @group #slow
 */
class ShortcutLinksTest extends ShortcutTestBase {

+1 −0
Original line number Diff line number Diff line
@@ -12,6 +12,7 @@
 * Tests low-level theme functions.
 *
 * @group Theme
 * @group #slow
 */
class ThemeTest extends BrowserTestBase {

+13 −5
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

namespace Drupal\Tests\system\Functional\UpdateSystem;

use Drupal\FunctionalTests\Update\UpdatePathTestBaseTest;
use Drupal\FunctionalTests\Update\UpdatePathTestBase;
use Drupal\node\Entity\Node;
use Drupal\node\Entity\NodeType;
use Drupal\user\Entity\User;
@@ -10,12 +10,12 @@
// cspell:ignore hola usuario

/**
 * Runs UpdatePathTestBaseTest with a dump filled with content.
 * Runs UpdatePathTestBase with a dump filled with content.
 *
 * @group #slow
 * @group Update
 */
class UpdatePathTestBaseFilledTest extends UpdatePathTestBaseTest {
class UpdatePathTestBaseFilledTest extends UpdatePathTestBase {

  /**
   * {@inheritdoc}
@@ -26,8 +26,9 @@ class UpdatePathTestBaseFilledTest extends UpdatePathTestBaseTest {
   * {@inheritdoc}
   */
  protected function setDatabaseDumpFiles() {
    parent::setDatabaseDumpFiles();
    $this->databaseDumpFiles[0] = __DIR__ . '/../../../../tests/fixtures/update/drupal-9.4.0.filled.standard.php.gz';
    $this->databaseDumpFiles[] = __DIR__ . '/../../../../tests/fixtures/update/drupal-9.4.0.filled.standard.php.gz';
    $this->databaseDumpFiles[] = __DIR__ . '/../../../../tests/fixtures/update/drupal-8.update-test-schema-enabled.php';
    $this->databaseDumpFiles[] = __DIR__ . '/../../../../tests/fixtures/update/drupal-8.update-test-semver-update-n-enabled.php';
  }

  /**
@@ -417,4 +418,11 @@ protected function replaceUser1() {
    // Do not replace the user from our dump.
  }

  /**
   * Tests that the database was properly loaded.
   */
  public function testDatabaseProperlyLoaded() {
    $this->testDatabaseLoaded();
  }

}
+1 −0
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@
 * Tests load, save and delete for taxonomy terms.
 *
 * @group taxonomy
 * @group #slow
 */
class TermTest extends TaxonomyTestBase {

+1 −0
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@
 * Tests the taxonomy index filter handler UI.
 *
 * @group taxonomy
 * @group #slow
 * @see \Drupal\taxonomy\Plugin\views\field\TaxonomyIndexTid
 */
class TaxonomyIndexTidUiTest extends UITestBase {
Loading