chore: adjust and cleanup tests

This commit is contained in:
Björn Fromme
2025-10-18 17:15:31 +02:00
parent 479b177e90
commit 0f8fed605c
10 changed files with 52 additions and 148 deletions
@@ -250,7 +250,7 @@ class ParticipantInsuranceFieldHandlerTest extends TestCase
private function createInsurance(string|int $id, string $label = 'Test Insurance'): Insurance
{
$insurance = new Insurance();
$insurance->id = $id;
$insurance->id = (string) $id;
$insurance->label = $label;
return $insurance;