Verified Commit d915b612 authored by Jess's avatar Jess
Browse files

Issue #3546496 by joachim, shayaanmiyy, mstrelan, lostcarpark,...

Issue #3546496 by joachim, shayaanmiyy, mstrelan, lostcarpark, michael.j.gleeson, xjm, jberghammer, ranzinator2000, antojose: PluginTestBase has undeclared dependency on user module

(cherry picked from commit ac972449)
parent 2aa1f42b
Loading
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -11,11 +11,6 @@
 */
class DerivativeTest extends PluginTestBase {

  /**
   * {@inheritdoc}
   */
  protected static $modules = ['node', 'user'];

  /**
   * Tests getDefinitions() and getDefinition() with a derivativeDecorator.
   */
+0 −5
Original line number Diff line number Diff line
@@ -13,11 +13,6 @@
 */
class FactoryTest extends PluginTestBase {

  /**
   * {@inheritdoc}
   */
  protected static $modules = ['node', 'user'];

  /**
   * Tests that DefaultFactory can create a plugin instance.
   */
+0 −5
Original line number Diff line number Diff line
@@ -11,11 +11,6 @@
 */
class InspectionTest extends PluginTestBase {

  /**
   * {@inheritdoc}
   */
  protected static $modules = ['node', 'user'];

  /**
   * Tests getPluginId() and getPluginDefinition().
   */
+5 −1
Original line number Diff line number Diff line
@@ -20,7 +20,11 @@ abstract class PluginTestBase extends KernelTestBase {
  /**
   * {@inheritdoc}
   */
  protected static $modules = ['plugin_test'];
  protected static $modules = [
    'plugin_test',
    'user',
    'node',
  ];

  /**
   * The test plugin manager used by Plugin API unit tests.