Skip to content

Commit

Permalink
style: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideIadeluca committed Nov 18, 2024
1 parent b54ea07 commit c783206
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions framework/core/tests/integration/api/users/CreateTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public function admins_can_create_activated_users()
*/
public function admin_can_create_user_with_longest_possible_local_part_email()
{
$email = str_repeat('a', 64) . '@machine.local';
$email = str_repeat('a', 64).'@machine.local';

$response = $this->send(
$this->request(
Expand Down Expand Up @@ -178,7 +178,7 @@ public function admin_can_create_user_with_longest_possible_local_part_email()
*/
public function admin_can_create_user_with_longest_valid_domain()
{
$email = 't@' . str_repeat('a', 63) . '.' . str_repeat('b', 63) . '.' . str_repeat('c', 63) . '.' . str_repeat('d', 58) . '.x';
$email = 't@'.str_repeat('a', 63).'.'.str_repeat('b', 63).'.'.str_repeat('c', 63).'.'. str_repeat('d', 58).'.x';

$response = $this->send(
$this->request(
Expand Down Expand Up @@ -213,8 +213,8 @@ public function admin_can_create_user_with_longest_valid_domain()
public function admin_can_create_user_with_longest_valid_email()
{
$localPart = str_repeat('a', 64);
$domain = str_repeat('a', 61) . '.' . str_repeat('a', 60) . '.' . str_repeat('a', 60) . '.local';
$email = $localPart . '@' . $domain;
$domain = str_repeat('a', 61).'.'.str_repeat('a', 60).'.'.str_repeat('a', 60).'.local';
$email = $localPart.'@'.$domain;

$response = $this->send(
$this->request(
Expand Down Expand Up @@ -248,7 +248,7 @@ public function admin_can_create_user_with_longest_valid_email()
*/
public function admin_cannot_create_user_with_invalid_email_length()
{
$email = str_repeat('a', 65) . '@' . str_repeat('a', 256) . '.local';
$email = str_repeat('a', 65).'@'.str_repeat('a', 256).'.local';

$response = $this->send(
$this->request(
Expand Down

0 comments on commit c783206

Please sign in to comment.