Fix unit tests for MINUTE()

This commit is contained in:
Adrien Crivelli 2016-10-02 09:40:07 +09:00
parent c15ab515a7
commit 7de0439b96
No known key found for this signature in database
GPG Key ID: B182FD79DC6DE92E
1 changed files with 0 additions and 2 deletions

View File

@ -281,8 +281,6 @@ class DateTimeTest extends \PHPUnit_Framework_TestCase
*/ */
public function testMINUTE() public function testMINUTE()
{ {
$this->markTestIncomplete('TODO: This test should be fixed');
$args = func_get_args(); $args = func_get_args();
$expectedResult = array_pop($args); $expectedResult = array_pop($args);
$result = call_user_func_array([DateTime::class, 'MINUTEOFHOUR'], $args); $result = call_user_func_array([DateTime::class, 'MINUTEOFHOUR'], $args);