From 590ea02dae4162c78238036f3b543c142c107fc1 Mon Sep 17 00:00:00 2001 From: edalzell Date: Fri, 29 Aug 2025 14:26:46 -0700 Subject: [PATCH] fix test --- tests/Feature/TagTest.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/Feature/TagTest.php b/tests/Feature/TagTest.php index 95f3d29..ada7d2c 100755 --- a/tests/Feature/TagTest.php +++ b/tests/Feature/TagTest.php @@ -109,9 +109,8 @@ public function can_generate_calendar_occurrences() $occurrences = $this->tag->calendar(); $this->assertCount(42, $occurrences); - $this->assertCount(2, Arr::get($occurrences, '6.dates')); - $this->assertTrue(Arr::get($occurrences, '7.no_results')); - $this->assertCount(1, Arr::get($occurrences, '13.dates')); + $this->assertCount(2, Arr::get($occurrences, '5.dates')); + $this->assertTrue(Arr::get($occurrences, '6.no_results')); } #[Test]