diff --git a/classes/validation/enums/DateComparisonRule.php b/classes/validation/enums/DateComparisonRule.php index 79388ae6a9b..63bfd75684b 100644 --- a/classes/validation/enums/DateComparisonRule.php +++ b/classes/validation/enums/DateComparisonRule.php @@ -24,4 +24,3 @@ enum DateComparisonRule: string case GREATER_OR_EQUAL = 'after_or_equal'; case LESSER_OR_EQUAL = 'before_or_equal'; } - \ No newline at end of file diff --git a/tests/jobs/email/ReviewReminderTest.php b/tests/jobs/email/ReviewReminderTest.php index 0d1f9c7d70f..564a4e116dd 100644 --- a/tests/jobs/email/ReviewReminderTest.php +++ b/tests/jobs/email/ReviewReminderTest.php @@ -180,6 +180,8 @@ public function testRunSerializedJob(): void app()->instance(EventRepository::class, $eventRepoMock); - $this->assertNull($reviewReminderJob->handle()); + $reviewReminderJob->handle(); + + $this->expectNotToPerformAssertions(); } }