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 /plugins/Feedback
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 'plugins/Feedback')
-rw-r--r--plugins/Feedback/tests/Integration/ControllerTest.php2
-rw-r--r--plugins/Feedback/tests/Integration/FeedbackTest.php3
2 files changed, 1 insertions, 4 deletions
diff --git a/plugins/Feedback/tests/Integration/ControllerTest.php b/plugins/Feedback/tests/Integration/ControllerTest.php
index acd95512e3..67f41da8d9 100644
--- a/plugins/Feedback/tests/Integration/ControllerTest.php
+++ b/plugins/Feedback/tests/Integration/ControllerTest.php
@@ -36,8 +36,6 @@ class ControllerTest extends IntegrationTestCase
'user1',
'a98732d98732',
'user1@example.com',
- 'user1',
- 'ab9879dc23876f19',
'2019-03-03'
);
FakeAccess::$identity = 'user1';
diff --git a/plugins/Feedback/tests/Integration/FeedbackTest.php b/plugins/Feedback/tests/Integration/FeedbackTest.php
index 33c88e1336..f044592a84 100644
--- a/plugins/Feedback/tests/Integration/FeedbackTest.php
+++ b/plugins/Feedback/tests/Integration/FeedbackTest.php
@@ -35,10 +35,9 @@ class FeedbackTest extends IntegrationTestCase
$this->userModel = new Model();
$this->userModel->addUser(
- 'user1',
+ 'user1',
'a98732d98732',
'user1@example.com',
- 'user1',
'2019-03-03'
);
FakeAccess::$identity = 'user1';