@@ -144,7 +144,7 @@ public function admins_can_create_activated_users()
144
144
*/
145
145
public function admin_can_create_user_with_longest_possible_local_part_email ()
146
146
{
147
- $ email = str_repeat ('a ' , 64 ) . '@machine.local ' ;
147
+ $ email = str_repeat ('a ' , 64 ). '@machine.local ' ;
148
148
149
149
$ response = $ this ->send (
150
150
$ this ->request (
@@ -178,7 +178,7 @@ public function admin_can_create_user_with_longest_possible_local_part_email()
178
178
*/
179
179
public function admin_can_create_user_with_longest_valid_domain ()
180
180
{
181
- $ email = 't@ ' . str_repeat ('a ' , 63 ) . '. ' . str_repeat ('b ' , 63 ) . '. ' . str_repeat ('c ' , 63 ) . '. ' . str_repeat ('d ' , 58 ) . '.x ' ;
181
+ $ email = 't@ ' . str_repeat ('a ' , 63 ). '. ' . str_repeat ('b ' , 63 ). '. ' . str_repeat ('c ' , 63 ). '. ' . str_repeat ('d ' , 58 ). '.x ' ;
182
182
183
183
$ response = $ this ->send (
184
184
$ this ->request (
@@ -213,8 +213,8 @@ public function admin_can_create_user_with_longest_valid_domain()
213
213
public function admin_can_create_user_with_longest_valid_email ()
214
214
{
215
215
$ localPart = str_repeat ('a ' , 64 );
216
- $ domain = str_repeat ('a ' , 61 ) . '. ' . str_repeat ('a ' , 60 ) . '. ' . str_repeat ('a ' , 60 ) . '.local ' ;
217
- $ email = $ localPart . '@ ' . $ domain ;
216
+ $ domain = str_repeat ('a ' , 61 ). '. ' . str_repeat ('a ' , 60 ). '. ' . str_repeat ('a ' , 60 ). '.local ' ;
217
+ $ email = $ localPart. '@ ' . $ domain ;
218
218
219
219
$ response = $ this ->send (
220
220
$ this ->request (
@@ -248,7 +248,7 @@ public function admin_can_create_user_with_longest_valid_email()
248
248
*/
249
249
public function admin_cannot_create_user_with_invalid_email_length ()
250
250
{
251
- $ email = str_repeat ('a ' , 65 ) . '@ ' . str_repeat ('a ' , 256 ) . '.local ' ;
251
+ $ email = str_repeat ('a ' , 65 ). '@ ' . str_repeat ('a ' , 256 ). '.local ' ;
252
252
253
253
$ response = $ this ->send (
254
254
$ this ->request (
0 commit comments