Skip to content

Commit

Permalink
Removing pointless test that was in the middle of an unrelated test.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Jun 25, 2011
1 parent f5b3549 commit 87fe663
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions lib/Cake/Test/Case/View/Helper/FormHelperTest.php
Expand Up @@ -4702,19 +4702,6 @@ public function testDateTime() {
);
$this->assertTags($result, $expected);

$result = $this->Form->input('ContactTag');
$expected = array(
'div' => array('class' => 'input select'),
'label' => array('for' => 'ContactTagContactTag'),
'Contact Tag',
'/label',
array('input' => array('type' => 'hidden', 'name' => 'data[ContactTag][ContactTag]', 'value' => '', 'id' => 'ContactTagContactTag_')),
array('select' => array('name' => 'data[ContactTag][ContactTag][]', 'multiple' => 'multiple', 'id' => 'ContactTagContactTag')),
'/select',
'/div'
);
$this->assertTags($result, $expected);

$this->Form->create('Contact');
$result = $this->Form->input('published', array('monthNames' => false));
$now = strtotime('now');
Expand Down

0 comments on commit 87fe663

Please sign in to comment.