Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <tsteur@users.noreply.github.com>2020-03-23 01:49:36 +0300
committerGitHub <noreply@github.com>2020-03-23 01:49:36 +0300
commit93f5717c03170975b3bd3925dbc16f77dc9b3327 (patch)
tree01b869aa3ed235f1488a07282ba4d23f45b78812 /tests/resources/install-matomo.php
parent0eb8c7c08676e50c955fd2e1081b490a62026a59 (diff)
Remove user alias from DB (#15714)
* Remove alias * fix more tests * fix more system tests * fix ui tests * add to developer changelog * fix typo
Diffstat (limited to 'tests/resources/install-matomo.php')
-rw-r--r--tests/resources/install-matomo.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/resources/install-matomo.php b/tests/resources/install-matomo.php
index 741471c6bc..b9e03b88ee 100644
--- a/tests/resources/install-matomo.php
+++ b/tests/resources/install-matomo.php
@@ -91,9 +91,9 @@ function createSuperUser() {
$user = $model->getUser($login);
if (empty($user)) {
- $model->addUser($login, $password, 'hello@example.org', $login, Date::now()->getDatetime());
+ $model->addUser($login, $password, 'hello@example.org', Date::now()->getDatetime());
} else {
- $model->updateUser($login, $password, 'hello@example.org', $login);
+ $model->updateUser($login, $password, 'hello@example.org');
}
$setSuperUser = empty($user) || !empty($user['superuser_access']);