From e5ecd0a2c0d65e29897a060807ed8cba25005570 Mon Sep 17 00:00:00 2001 From: philipp lang Date: Wed, 9 Jul 2025 23:35:03 +0200 Subject: [PATCH] Fix tests --- tests/Feature/Form/GenerateContributionTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/Form/GenerateContributionTest.php b/tests/Feature/Form/GenerateContributionTest.php index 4efc320b..1f976a80 100644 --- a/tests/Feature/Form/GenerateContributionTest.php +++ b/tests/Feature/Form/GenerateContributionTest.php @@ -141,7 +141,7 @@ it('creates document with participant data', function (array $defaultData, array it('creates document with is leader', function (array $defaultData, array $fields) { $form = Form::factory()->fields([ ...$fields, - test()->dropdownField('leader')->options(['L', 'NL'])->specialType(SpecialType::LEADER), + test()->dropdownField('leader')->options(['L', 'NL']), ]) ->has(Participant::factory()->data([...$defaultData, 'leader' => 'L'])) ->leaderConditions(ConditionRequestFactory::new()->whenField('leader', 'L')->create())