From 0912867b49ae3b8878acd6d280caf6cc963dbee7 Mon Sep 17 00:00:00 2001 From: mark_story Date: Mon, 2 May 2016 21:58:20 -0400 Subject: [PATCH] Minor formatting clean up. Refs #8754 --- .../Test/Case/View/Helper/FormHelperTest.php | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) 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); }