From f1ad653ba83f5480b0fb629f11eadab24bd0c3d9 Mon Sep 17 00:00:00 2001 From: philipp lang Date: Thu, 7 Sep 2023 00:22:44 +0200 Subject: [PATCH] Fixed tests --- tests/Feature/Member/ShowTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Feature/Member/ShowTest.php b/tests/Feature/Member/ShowTest.php index be94a768..edd5203f 100644 --- a/tests/Feature/Member/ShowTest.php +++ b/tests/Feature/Member/ShowTest.php @@ -168,9 +168,9 @@ class ShowTest extends TestCase public function membershipDataProvider(): Generator { - yield [now()->subMonth(), null, true]; - yield [now()->subMonth(), now()->subDay(), false]; - yield [now()->addDay(), null, false]; + yield [now()->subMonths(2), null, true]; + yield [now()->subMonths(2), now()->subDay(), false]; + yield [now()->addDays(2), null, false]; } /**