chore: adjust and cleanup tests

This commit is contained in:
Björn Fromme
2026-03-16 11:59:11 +01:00
parent 1f5c835f8a
commit b485112ed3
10 changed files with 52 additions and 148 deletions
+3 -3
View File
@@ -77,13 +77,13 @@ class BookingTest extends TestCase
// Create insurance for participants 0 and 2
$insurance1 = new Insurance();
$insurance1->id = 100;
$insurance1->id = '100';
$insurance1->label = 'Reiseschutz Platin';
$insurance1->mapping = [0, 2];
// Create insurance for participant 1
$insurance2 = new Insurance();
$insurance2->id = 200;
$insurance2->id = '200';
$insurance2->label = 'Reiseschutz Gold';
$insurance2->mapping = [1];
@@ -126,7 +126,7 @@ class BookingTest extends TestCase
// Create insurance with empty mapping
$insurance = new Insurance();
$insurance->id = 100;
$insurance->id = '100';
$insurance->label = 'Reiseschutz';
$insurance->mapping = [];