From 388bb3f4a2d0eebededb89932f4239fc74852a3d Mon Sep 17 00:00:00 2001 From: Mathieu Rochette Date: Fri, 11 Oct 2024 17:12:47 +0200 Subject: [PATCH] . --- tests/VObject/Property/ICalendar/RecurTest.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/VObject/Property/ICalendar/RecurTest.php b/tests/VObject/Property/ICalendar/RecurTest.php index 0adf3021..29096e9d 100644 --- a/tests/VObject/Property/ICalendar/RecurTest.php +++ b/tests/VObject/Property/ICalendar/RecurTest.php @@ -198,11 +198,10 @@ public function testValidateStripNoFreq(): void public function testUnrepairableRRule(): void { $calendar = new VCalendar(); - $property = $calendar->createProperty('RRULE', 'IAmNotARRule'); $this->expectException(InvalidDataException::class); - $property->validate(Node::REPAIR); + $property = $calendar->createProperty('RRULE', 'IAmNotARRule'); } public function testValidateInvalidByMonthRruleWithRepair(): void