diff --git a/tests/Zend/Form/Element/MultiCheckboxTest.php b/tests/Zend/Form/Element/MultiCheckboxTest.php index 3e74fd7396..207787c27c 100644 --- a/tests/Zend/Form/Element/MultiCheckboxTest.php +++ b/tests/Zend/Form/Element/MultiCheckboxTest.php @@ -326,9 +326,9 @@ public function testDisabledForAttribute() $this->element->setLabel('Foo'); $expected = '
' - . "\n" + . PHP_EOL . '
' - . "\n" + . PHP_EOL . '
'; $this->assertSame($expected, $this->element->render($this->getView())); } @@ -341,7 +341,7 @@ public function testDisabledForAttributeWithoutLabelDecorator() $this->element->setLabel('Foo')->removeDecorator('label'); $expected = '
' - . "\n" + . PHP_EOL . '
'; $this->assertSame($expected, $this->element->render($this->getView())); }