diff --git a/core/tests/Drupal/Tests/Core/Form/FormStateTest.php b/core/tests/Drupal/Tests/Core/Form/FormStateTest.php index b99bff6..0697b2d 100644 --- a/core/tests/Drupal/Tests/Core/Form/FormStateTest.php +++ b/core/tests/Drupal/Tests/Core/Form/FormStateTest.php @@ -374,10 +374,10 @@ public function testLoadIncludeNoName() { $form_state = $this->getMockBuilder('Drupal\Core\Form\FormState') ->setMethods(array('moduleLoadInclude')) ->getMock(); - $form_state->expects($this->once()) - ->method('moduleLoadInclude') - ->with($module, $type, $module) - ->willReturn(TRUE); + $form_state->expects($this->once()) + ->method('moduleLoadInclude') + ->with($module, $type, $module) + ->willReturn(TRUE); $this->assertTrue($form_state->loadInclude($module, $type)); }