Update marketing packages and checkout copy
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
tests / ui (push) Waiting to run

This commit is contained in:
Codex Agent
2026-02-01 13:04:11 +01:00
parent 386d0004ed
commit 2e78f3ab8d
35 changed files with 136 additions and 157 deletions

View File

@@ -37,10 +37,10 @@ class EventListTest extends TenantTestCase
{
$package = Package::factory()->create([
'type' => 'endcustomer',
'name' => 'Standard',
'name' => 'Classic',
'name_translations' => [
'de' => 'Standard',
'en' => 'Standard',
'de' => 'Classic',
'en' => 'Classic',
],
'price' => 59,
'gallery_days' => 45,
@@ -75,7 +75,7 @@ class EventListTest extends TenantTestCase
$this->assertIsArray($matchingEvent['package']);
$this->assertSame($package->id, $matchingEvent['package']['id']);
$this->assertSame('Standard', $matchingEvent['package']['name']);
$this->assertSame('Classic', $matchingEvent['package']['name']);
$this->assertSame('59.00', $matchingEvent['package']['price']);
}