Commit dac8929f authored by Joshua Sedler's avatar Joshua Sedler 🤸🏼
Browse files

Fixed missing related to issue #3286260 and minor drupal cs fixes

parent d9e575e8
Loading
Loading
Loading
Loading
+10 −2
Original line number Diff line number Diff line
@@ -19,6 +19,11 @@ class LoadTest extends BrowserTestBase {
   */
  public static $modules = ['block_component_library', 'block_content', 'views'];

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';

  /**
   * A user with permission to administer site configuration.
   *
@@ -31,7 +36,10 @@ class LoadTest extends BrowserTestBase {
   */
  protected function setUp(): void {
    parent::setUp();
    $this->user = $this->drupalCreateUser(['administer site configuration', 'administer blocks']);
    $this->user = $this->drupalCreateUser([
      'administer site configuration',
      'administer blocks',
    ]);
    $this->drupalLogin($this->user);
  }