I guess we use 10 as the settings for password min in tests

This commit is contained in:
snipe 2019-02-13 22:13:32 -08:00
parent 794bc45cc0
commit a4420efb7d

View file

@ -42,7 +42,7 @@ class UsersCest
$I->fillField('password', '12345'); // Must be 6 chars
$I->click('Save');
$I->seeElement('.alert-danger');
$I->see('The password must be at least 5 characters', '.alert-msg');
$I->see('The password must be at least 10 characters', '.alert-msg');
$I->see('The password confirmation does not match.', '.alert-msg');
}