Skip to content

Commit

Permalink
Fix coding standards errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Feb 25, 2014
1 parent 29a9f2b commit e5a0e25
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/TestCase/View/Helper/FormHelperTest.php
Expand Up @@ -5441,7 +5441,7 @@ public function testMonth() {
$result = $this->Form->month('Model.field', ['empty' => true, 'value' => '']);
$expected = array(
array('select' => array('name' => 'Model[field][month]')),
array('option' => array('selected' => 'selected', 'value' => '')),
array('option' => array('selected' => 'selected', 'value' => '')),
'/option',
array('option' => array('value' => '01')),
date('F', strtotime('2008-01-01 00:00:00')),
Expand All @@ -5456,7 +5456,7 @@ public function testMonth() {
$result = $this->Form->month('Model.field', ['value' => '', 'monthNames' => false]);
$expected = array(
array('select' => array('name' => 'Model[field][month]')),
array('option' => array('selected' => 'selected', 'value' => '')),
array('option' => array('selected' => 'selected', 'value' => '')),
'/option',
array('option' => array('value' => '01')),
'1',
Expand Down Expand Up @@ -6186,7 +6186,7 @@ public function testPostButton() {
$this->assertTrue(strpos($result, '<input type="hidden" name="extra" value="value"') !== false);
}

/**
/**
* Test using postButton with N dimensional data.
*
* @return void
Expand Down Expand Up @@ -6327,7 +6327,7 @@ public function testPostLink() {
));
}

/**
/**
* Test using postLink with N dimensional data.
*
* @return void
Expand Down

0 comments on commit e5a0e25

Please sign in to comment.