Commit cfd85173 authored by catch's avatar catch
Browse files

Issue #3182103 by TR, dan2k3k4, longwave, mondrake, Sweetchuck, Kristen Pol:...

Issue #3182103 by TR, dan2k3k4, longwave, mondrake, Sweetchuck, Kristen Pol: Ensure correct signature for setUp(), tearDown(), setUpBeforeClass(), and assertPostConditions() methods
parent bd9fa275
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ abstract class AggregatorTestBase extends BrowserTestBase {
  /**
   * {@inheritdoc}
   */
  protected function setUp() {
  protected function setUp(): void {
    parent::setUp();

    // Create an Article node type.
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ class BigPipeRegressionTest extends WebDriverTestBase {
  /**
   * {@inheritdoc}
   */
  public function setUp(): void {
  protected function setUp(): void {
    parent::setUp();

    // Use the big_pipe_test_theme theme.
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ abstract class BlockTestBase extends BrowserTestBase {
  /**
   * {@inheritdoc}
   */
  protected function setUp() {
  protected function setUp(): void {
    parent::setUp();

    // Use the test page as the front page.
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ abstract class BlockContentTestBase extends BrowserTestBase {
  /**
   * Sets the test up.
   */
  protected function setUp() {
  protected function setUp(): void {
    parent::setUp();
    if ($this->autoCreateBasicBlockType) {
      $this->createBlockContentType('basic', TRUE);
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ class BlockContentFieldFilterTest extends BlockContentTestBase {
  /**
   * {@inheritdoc}
   */
  public function setUp($import_test_views = TRUE): void {
  protected function setUp($import_test_views = TRUE): void {
    parent::setUp($import_test_views);

    // Add two new languages.
Loading