Skip to content

Commit

Permalink
Missing assert conversion to self
Browse files Browse the repository at this point in the history
  • Loading branch information
BenMorel committed Oct 16, 2023
1 parent 4987efe commit 341aaf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/YearWeekTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ public function testGetFirstLastDay(int $year, int $week, string $firstDay, stri
$yearWeek = YearWeek::of($year, $week);

self::assertIs(LocalDate::class, $firstDay, $yearWeek->getFirstDay());
$this->assertIs(LocalDate::class, $lastDay, $yearWeek->getLastDay());
self::assertIs(LocalDate::class, $lastDay, $yearWeek->getLastDay());
}

/**
Expand Down

0 comments on commit 341aaf7

Please sign in to comment.