Skip to content

Commit 55450c9

Browse files
committed
test: enable commented test case
1 parent 05c8909 commit 55450c9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/ExpressionTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
use Ahc\Cron\Expression;
66

7-
/** @coversDefaultClass \Ahc\Cron\Expression */
87
class ExpressionTest extends \PHPUnit_Framework_TestCase
98
{
109
/**
@@ -90,7 +89,7 @@ public function scheduleProvider()
9089
['4-59/2 * * * *', strtotime('2011-06-20 12:04:00'), '2011-06-20 12:04:00', true],
9190
['4-59/2 * * * *', strtotime('2011-06-20 12:06:00'), '2011-06-20 12:06:00', true],
9291
['4-59/3 * * * *', strtotime('2011-06-20 12:06:00'), '2011-06-20 12:07:00', false],
93-
//array('0 0 * * 0,2-6', strtotime('2011-06-20 23:09:00'), '2011-06-21 00:00:00', false),
92+
array('0 0 * * 0,2-6', strtotime('2011-06-20 23:09:00'), '2011-06-21 00:00:00', false),
9493
// Test Day of the Week and the Day of the Month (issue #1)
9594
['0 0 1 1 0', strtotime('2011-06-15 23:09:00'), '2012-01-01 00:00:00', false],
9695
['0 0 1 JAN 0', strtotime('2011-06-15 23:09:00'), '2012-01-01 00:00:00', false],

0 commit comments

Comments
 (0)