From 2f33919f8b960f59af3bfab245640d1fc6692962 Mon Sep 17 00:00:00 2001 From: Leon Morival Date: Thu, 21 May 2026 16:48:49 +0200 Subject: [PATCH] feat: name format --- tests/Feature/EmailVerificationTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/EmailVerificationTest.php b/tests/Feature/EmailVerificationTest.php index 999ab2a..3cb156a 100644 --- a/tests/Feature/EmailVerificationTest.php +++ b/tests/Feature/EmailVerificationTest.php @@ -18,7 +18,7 @@ it('sends a verification email when a user registers', function () { Notification::fake(); $this->postJson('/api/auth/register', [ - 'name' => 'Léon', + 'name' => 'Leon', 'email' => 'leon@example.com', 'password' => 'password', 'physicalActivityLevel' => PhysicalActivityLevel::LIGHTLY_ACTIVE->value,