1
0
Fork 0
mirror of synced 2024-05-07 14:22:40 +12:00

tests(database): increase password length

This commit is contained in:
Torsten Dittmann 2021-12-01 16:33:03 +01:00
parent 135bf0cfee
commit 3d2cd66466

View file

@ -9,7 +9,7 @@ trait DatabasePermissionsScope
public array $users = [];
public array $teams = [];
public function createUser(string $id, string $email, string $password = 'test123'): array
public function createUser(string $id, string $email, string $password = 'test123!'): array
{
$user = $this->client->call(Client::METHOD_POST, '/account', [
'origin' => 'http://localhost',