Commit 8f72e9c7 authored by catch's avatar catch
Browse files

Issue #3267314 by quietone, danflanagan8: Handle migration tests for removing tracker

This reverts commit add472cf.
parent add472cf
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@
      "modules/rdf/tests/fixtures/drupal7.php",
      "modules/search/tests/UnicodeTest.txt",
      "modules/system/tests/logo.svgz",
      "modules/tracker/tests/fixtures/drupal7.php",
      "node_modules/*",
      "profiles/demo_umami/modules/demo_umami_content/default_content/languages/es/**/*",
      "tests/fixtures/files/*",
+1 −0
Original line number Diff line number Diff line
@@ -53,6 +53,7 @@ class MigrationPluginListTest extends KernelTestBase {
    'system',
    'taxonomy',
    'text',
    // @todo Remove tracker in https://www.drupal.org/project/drupal/issues/3261452
    'tracker',
    'update',
    'user',
+1 −0
Original line number Diff line number Diff line
@@ -37,6 +37,7 @@ finished:
    ping: core
    poll: core
    throttle: core
    # @todo Remove tracker in https://www.drupal.org/project/drupal/issues/3261452
    tracker: core
    translation: core
    trigger: core
+1 −0
Original line number Diff line number Diff line
@@ -75,6 +75,7 @@ class StateFileExistsTest extends MigrateDrupalTestBase {
    'taxonomy',
    'telephone',
    'text',
    // @todo Remove tracker in https://www.drupal.org/project/drupal/issues/3261452
    'tracker',
    'update',
    'user',
+1 −0
Original line number Diff line number Diff line
@@ -39,6 +39,7 @@ protected function setUp(): void {
    $this->installSchema('node', ['node_access']);
    $this->installSchema('search', ['search_dataset']);
    $this->installSchema('system', ['sequences']);
    // @todo Remove tracker in https://www.drupal.org/project/drupal/issues/3261452
    $this->installSchema('tracker', ['tracker_node', 'tracker_user']);

    // Enable content moderation for nodes of type page.
Loading