Update marketing packages and checkout copy
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

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

@@ -26,7 +26,7 @@ class PurchaseConfirmationMailTest extends TestCase
$user->forceFill(['tenant_id' => $tenant->id])->save();
$package = Package::factory()->create([
'name' => 'Standard',
'name' => 'Classic',
'type' => 'endcustomer',
'max_photos' => 500,
'max_guests' => 200,
@@ -51,7 +51,7 @@ class PurchaseConfirmationMailTest extends TestCase
$html = $mailable->render();
$this->assertStringContainsString('Die Fotospiel.App', $html);
$this->assertStringContainsString('Standard', $html);
$this->assertStringContainsString('Classic', $html);
$this->assertStringContainsString('txn_123', $html);
$this->assertStringContainsString('https://paddle.test/invoice/123', $html);
}