Skip to content

Commit

Permalink
zendframework#7114 - minor cs fix (spacing), adding @group annotati…
Browse files Browse the repository at this point in the history
…on for newly introduced tests
  • Loading branch information
Ocramius committed Jan 12, 2015
1 parent 1f5196f commit 168af62
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/ZendTest/Form/Element/DateSelectTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,13 @@ public function testConstructAcceptsDayAttributes()
$this->assertEquals('test', $dayAttributes['class']);
}

/**
* @group 7114
*/
public function testValueSetterReturnsSameObjectType()
{
$element = new DateSelectElement();
$element = new DateSelectElement();

$this->assertSame($element, $element->setValue('2014-01-01'));
}
}

0 comments on commit 168af62

Please sign in to comment.