Skip to content
This repository has been archived by the owner on May 16, 2018. It is now read-only.

Commit

Permalink
Merged r25029 from trunk; updates tests for ZF-12059
Browse files Browse the repository at this point in the history
  • Loading branch information
adamlundrigan committed Jul 31, 2012
1 parent 4fd3fa0 commit 1693f72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Zend/Form/Element/MultiCheckboxTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -326,9 +326,9 @@ public function testDisabledForAttribute()
$this->element->setLabel('Foo');

$expected = '<dt id="foo-label"><label class="optional">Foo</label></dt>'
. "\n"
. PHP_EOL
. '<dd id="foo-element">'
. "\n"
. PHP_EOL
. '</dd>';
$this->assertSame($expected, $this->element->render($this->getView()));
}
Expand All @@ -341,7 +341,7 @@ public function testDisabledForAttributeWithoutLabelDecorator()
$this->element->setLabel('Foo')->removeDecorator('label');

$expected = '<dd id="foo-element">'
. "\n"
. PHP_EOL
. '</dd>';
$this->assertSame($expected, $this->element->render($this->getView()));
}
Expand Down

0 comments on commit 1693f72

Please # to comment.