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
@@ -21,7 +21,7 @@ class BookingInsurancesParser extends AbstractParser
$result->each(function (Crawler $node) use (&$insurances) {
$insurance = new Insurance();
$insurance->id = (int) $node->attr('idversicherung');
$insurance->id = $node->attr('idversicherung');
$insurance->label = $node->attr('bezeichnung');
$insurance->price = $this->stringToFloat($node->attr('gesamtpreis'));