Unverified Commit 3f87e0d8 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3132745 by jungle, longwave, xjm, swatichouhan012, daffie: Fix...

Issue #3132745 by jungle, longwave, xjm, swatichouhan012, daffie: Fix Drupal.Array.Array.LongLineDeclaration coding standard for instances of the $modules test property
parent 767d453d
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -27,7 +27,13 @@ abstract class AggregatorTestBase extends BrowserTestBase {
   *
   * @var array
   */
  protected static $modules = ['block', 'node', 'aggregator', 'aggregator_test', 'views'];
  protected static $modules = [
    'block',
    'node',
    'aggregator',
    'aggregator_test',
    'views',
  ];

  /**
   * {@inheritdoc}
+7 −1
Original line number Diff line number Diff line
@@ -18,7 +18,13 @@ class AggregatorTitleTest extends KernelTestBase {
   *
   * @var array
   */
  protected static $modules = ['file', 'field', 'options', 'aggregator', 'system'];
  protected static $modules = [
    'file',
    'field',
    'options',
    'aggregator',
    'system',
  ];

  /**
   * The field name that is tested.
+8 −1
Original line number Diff line number Diff line
@@ -22,7 +22,14 @@ class IntegrationTest extends ViewsKernelTestBase {
   *
   * @var array
   */
  protected static $modules = ['aggregator', 'aggregator_test_views', 'system', 'field', 'options', 'user'];
  protected static $modules = [
    'aggregator',
    'aggregator_test_views',
    'system',
    'field',
    'options',
    'user',
  ];

  /**
   * Views used by this test.
+6 −1
Original line number Diff line number Diff line
@@ -23,7 +23,12 @@ class BasicAuthTest extends BrowserTestBase {
   *
   * @var array
   */
  protected static $modules = ['basic_auth', 'router_test', 'locale', 'basic_auth_test'];
  protected static $modules = [
    'basic_auth',
    'router_test',
    'locale',
    'basic_auth_test',
  ];

  /**
   * {@inheritdoc}
+7 −1
Original line number Diff line number Diff line
@@ -15,7 +15,13 @@ abstract class BlockTestBase extends BrowserTestBase {
   *
   * @var array
   */
  protected static $modules = ['block', 'filter', 'test_page_test', 'help', 'block_test'];
  protected static $modules = [
    'block',
    'filter',
    'test_page_test',
    'help',
    'block_test',
  ];

  /**
   * A list of theme regions to test.
Loading