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:
authorKate Butler <kate@innocraft.com>2019-10-02 06:01:47 +0300
committerThomas Steur <tsteur@users.noreply.github.com>2019-10-02 06:01:47 +0300
commit378c403704552a88c6e01f955bc2379aaed8f172 (patch)
treea760873a729edafa063627dbdca0e1ee5a127189 /plugins/API
parentca74816cfcfc5f9108c42c13a869b1f1d5b1d392 (diff)
Change login page message when user has been redirected after auth failure (#14829)
Diffstat (limited to 'plugins/API')
-rw-r--r--plugins/API/tests/Integration/APITest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/API/tests/Integration/APITest.php b/plugins/API/tests/Integration/APITest.php
index 0c401827c6..3b3d235ac5 100644
--- a/plugins/API/tests/Integration/APITest.php
+++ b/plugins/API/tests/Integration/APITest.php
@@ -74,7 +74,7 @@ class APITest extends IntegrationTestCase
private function assertResponseIsPermissionError($response)
{
$this->assertSame('error', $response['result']);
- $this->assertStringStartsWith('General_ExceptionPrivilegeAccessWebsite', $response['message']);
+ $this->assertStringStartsWith('General_YouMustBeLoggedIn', $response['message']);
}
private function assertResponseIsSuccess($response)