diff --git a/lib/Cake/Test/Case/View/Helper/FormHelperTest.php b/lib/Cake/Test/Case/View/Helper/FormHelperTest.php index 7636cebb1..cd52bc30d 100644 --- a/lib/Cake/Test/Case/View/Helper/FormHelperTest.php +++ b/lib/Cake/Test/Case/View/Helper/FormHelperTest.php @@ -7715,17 +7715,13 @@ class FormHelperTest extends CakeTestCase { public function testInputTimeWithMicrosecondsAsText() { $this->Form->request->data = array(); $this->Form->create('Contact'); - $result = $this->Form->input('lap_time', - array( - 'type' => 'text', - ) - ); + $result = $this->Form->input('lap_time', array( + 'type' => 'text', + )); $this->assertNotContains('maxlength=', $result); - $result = $this->Form->input('last_seen', - array( - 'type' => 'text', - ) - ); + $result = $this->Form->input('last_seen', array( + 'type' => 'text', + )); $this->assertNotContains('maxlength=', $result); }