prepare release 1.8 (#1505)

This commit is contained in:
Kevin Papst
2020-03-01 14:25:59 +01:00
committed by GitHub
parent 8d3a305ec3
commit b8273c4441
8 changed files with 149 additions and 6 deletions

View File

@@ -25,7 +25,7 @@ class UserValidationTest extends KernelTestCase
return [
['', ''],
[null, null],
['xx', 'test@'], // too short username
['x', 'test@'], // too short username
[str_pad('#', 61, '-'), 'test@x.'], // too long username
[str_pad('#', 61, '-'), 'test@x.', ['xxxxx']], // too short password and invalid role
];