Unverified Commit d1512f59 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2822382 by voleger, pfrenssen, erozqba, jungle, RytoEX, borisson_,...

Issue #2822382 by voleger, pfrenssen, erozqba, jungle, RytoEX, borisson_, jofitz, shashikant_chauhan, sidharthap, dawehner, xjm, kiamlaluno, catch, daffie, klausi: Make every $modules property protected on classes extending BrowserTestBase and KernelTestBase

(cherry picked from commit 6bf02d96)
parent 119028bc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ class ActionListTest extends BrowserTestBase {
   *
   * @var array
   */
  public static $modules = ['action'];
  protected static $modules = ['action'];

  /**
   * {@inheritdoc}
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ class ActionUninstallTest extends BrowserTestBase {
   *
   * @var array
   */
  public static $modules = ['views', 'action'];
  protected static $modules = ['views', 'action'];

  /**
   * {@inheritdoc}
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ class ConfigurationTest extends BrowserTestBase {
   *
   * @var array
   */
  public static $modules = ['action'];
  protected static $modules = ['action'];


  /**
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ class MigrateActionConfigsTest extends MigrateDrupal6TestBase {
  /**
   * {@inheritdoc}
   */
  public static $modules = ['action'];
  protected static $modules = ['action'];

  /**
   * {@inheritdoc}
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
 */
class MigrateActionsTest extends MigrateDrupal6TestBase {

  public static $modules = ['action', 'comment', 'node'];
  protected static $modules = ['action', 'comment', 'node'];

  /**
   * {@inheritdoc}
Loading