Minor formatting clean up.

Refs #8754
This commit is contained in:
mark_story 2016-05-02 21:58:20 -04:00
parent 0d61b46822
commit 0912867b49

View file

@ -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);
}