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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-01-18 11:17:26 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-01-22 12:12:04 +0300
commit16cca10b1167a0cfc9a4d16fe622b80383f6f3e3 (patch)
tree8cf76580b0aac6f581167f020b3d6de6a1a73042 /tests
parent1dcda19614e53c371b9f627e7590a341e44bab1a (diff)
Fix template paramter
Else we get shown an error page instead of the correct 403. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests')
-rw-r--r--tests/Core/Controller/ClientFlowLoginControllerTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Core/Controller/ClientFlowLoginControllerTest.php b/tests/Core/Controller/ClientFlowLoginControllerTest.php
index b54897ddc44..13eb2895bbb 100644
--- a/tests/Core/Controller/ClientFlowLoginControllerTest.php
+++ b/tests/Core/Controller/ClientFlowLoginControllerTest.php
@@ -253,7 +253,7 @@ class ClientFlowLoginControllerTest extends TestCase {
'core',
'403',
[
- 'file' => 'State token does not match',
+ 'message' => 'State token does not match',
],
'guest'
);
@@ -272,7 +272,7 @@ class ClientFlowLoginControllerTest extends TestCase {
'core',
'403',
[
- 'file' => 'State token does not match',
+ 'message' => 'State token does not match',
],
'guest'
);
@@ -321,7 +321,7 @@ class ClientFlowLoginControllerTest extends TestCase {
'core',
'403',
[
- 'file' => 'State token does not match',
+ 'message' => 'State token does not match',
],
'guest'
);