chore: adjust and cleanup tests
This commit is contained in:
@@ -129,7 +129,7 @@ class ParticipantDtoTest extends TestCase
|
||||
$participant = new ParticipantDto();
|
||||
$participant->insurance = null;
|
||||
|
||||
$result = $participant->hasInsurance();
|
||||
$result = $participant->hasInsuranceSelected();
|
||||
|
||||
$this->assertFalse($result);
|
||||
}
|
||||
@@ -139,7 +139,7 @@ class ParticipantDtoTest extends TestCase
|
||||
$participant = new ParticipantDto();
|
||||
$participant->insurance = $this->createInsurance();
|
||||
|
||||
$result = $participant->hasInsurance();
|
||||
$result = $participant->hasInsuranceSelected();
|
||||
|
||||
$this->assertTrue($result);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user