Try to debug psql tests

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2021-01-04 16:20:49 +01:00
parent 7d8ce30e3f
commit 3b0087f35a
2 changed files with 3 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ trait RequestTrait {
public function __construct($baseUrl, $admin = 'admin', $regular_user_password = '123456') {
$this->baseUrl = $baseUrl;
$this->adminUser = $admin;
$this->adminUser = $admin === 'admin' ? ['admin', 'admin'] : $admin;
$this->regularUser = $regular_user_password;
}