chore: adjust and cleanup tests
This commit is contained in:
@@ -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 = [];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user