tests(database): increase password length

This commit is contained in:
Torsten Dittmann
2021-12-01 16:33:03 +01:00
parent 135bf0cfee
commit 3d2cd66466
@@ -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',