Skip to content

Commit

Permalink
Fixed code style
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna authored and github-actions[bot] committed Mar 19, 2024
1 parent 7b75572 commit b14c3c3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Unit/Screen/Fields/DateTimerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ public function testWithQuickDates(): void
->format24hr()
->range()
->withQuickDates([
'Today' => Carbon::parse("2024-03-19 12:11:11"),
'Yesterday' => Carbon::parse("2024-03-18 12:11:11")->subDay(),
'Today' => Carbon::parse('2024-03-19 12:11:11'),
'Yesterday' => Carbon::parse('2024-03-18 12:11:11')->subDay(),
'Week' => [
Carbon::parse("2024-03-19 12:11:11")->startOfDay()->subWeek(),
Carbon::parse("2024-03-19 12:11:11")->endOfDay()
Carbon::parse('2024-03-19 12:11:11')->startOfDay()->subWeek(),
Carbon::parse('2024-03-19 12:11:11')->endOfDay(),
],
]);

Expand Down

0 comments on commit b14c3c3

Please sign in to comment.