From 7de0439b961093990b88062f5240acf10d1b61b6 Mon Sep 17 00:00:00 2001 From: Adrien Crivelli Date: Sun, 2 Oct 2016 09:40:07 +0900 Subject: [PATCH] Fix unit tests for MINUTE() --- tests/PhpSpreadsheetTests/Calculation/DateTimeTest.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/PhpSpreadsheetTests/Calculation/DateTimeTest.php b/tests/PhpSpreadsheetTests/Calculation/DateTimeTest.php index 0d4100bc..5c8b9e0c 100644 --- a/tests/PhpSpreadsheetTests/Calculation/DateTimeTest.php +++ b/tests/PhpSpreadsheetTests/Calculation/DateTimeTest.php @@ -281,8 +281,6 @@ class DateTimeTest extends \PHPUnit_Framework_TestCase */ public function testMINUTE() { - $this->markTestIncomplete('TODO: This test should be fixed'); - $args = func_get_args(); $expectedResult = array_pop($args); $result = call_user_func_array([DateTime::class, 'MINUTEOFHOUR'], $args);