Skip to content

Commit

Permalink
fix: updated test to correct dates
Browse files Browse the repository at this point in the history
  • Loading branch information
rmenner committed Jun 26, 2019
1 parent 7bbe25f commit 6f607a9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/Unit/Console/Command/GenerateCalendarEventTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,9 @@ public function dataProvider_for_handle_recurring_generated()
],
[
[
'start_date' => '2019-06-19',
'start_date' => '2019-07-17',
'start_time' => '19:30',
'end_date' => '2019-06-19',
'end_date' => '2019-07-17',
'end_time' => '20:00',
'description' => str_random(32),
'is_recurring' => true,
Expand All @@ -213,9 +213,9 @@ public function dataProvider_for_handle_recurring_generated()
],
[
[
'start_date' => '2019-06-19',
'start_date' => '2019-08-21',
'start_time' => '19:30',
'end_date' => '2019-06-19',
'end_date' => '2019-08-21',
'end_time' => '20:00',
'description' => str_random(32),
'is_recurring' => true,
Expand All @@ -229,9 +229,9 @@ public function dataProvider_for_handle_recurring_generated()
],
[
[
'start_date' => '2019-06-19',
'start_date' => '2019-09-18',
'start_time' => '19:30',
'end_date' => '2019-06-19',
'end_date' => '2019-09-18',
'end_time' => '20:00',
'description' => str_random(32),
'is_recurring' => true,
Expand Down

0 comments on commit 6f607a9

Please sign in to comment.