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

Issue #3158292 by Hardik_Patel_12, kiamlaluno: Remove unused variables from...

Issue #3158292 by Hardik_Patel_12, kiamlaluno: Remove unused variables from FormAjaxResponseBuilderTest.php file

(cherry picked from commit 0f823ffd)
parent 426b1296
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -54,7 +54,6 @@ public function testBuildResponseNoTriggeringElement() {
    $form_state = new FormState();
    $commands = [];

    $expected = [];
    $this->expectException(HttpException::class);
    $this->formAjaxResponseBuilder->buildResponse($request, $form, $form_state, $commands);
  }
@@ -73,7 +72,6 @@ public function testBuildResponseNoCallable() {
    $form_state->setTriggeringElement($triggering_element);
    $commands = [];

    $expected = [];
    $this->expectException(HttpException::class);
    $this->formAjaxResponseBuilder->buildResponse($request, $form, $form_state, $commands);
  }