diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-08-09 14:27:20 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-08-09 16:45:25 +0200 |
commit | 8c1e75e0520d0efe51b615952329b1980d21f8b6 (patch) | |
tree | 68e85271ba02bdadd28350da76b70f23f93ba532 /tests | |
parent | 88603e98f89de716eedb6b1c94e0bc1f3366db3c (diff) | |
download | nextcloud-server-8c1e75e0520d0efe51b615952329b1980d21f8b6.tar.gz nextcloud-server-8c1e75e0520d0efe51b615952329b1980d21f8b6.zip |
Do not use file as template parameter
Using file will overwrite the $file parameter in the template base.
Leading to trying to include a file that is the exception message. Which
will of course fail.
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/AppFramework/Middleware/Security/SecurityMiddlewareTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/AppFramework/Middleware/Security/SecurityMiddlewareTest.php b/tests/lib/AppFramework/Middleware/Security/SecurityMiddlewareTest.php index f51f7e9a1c6..13c5379b142 100644 --- a/tests/lib/AppFramework/Middleware/Security/SecurityMiddlewareTest.php +++ b/tests/lib/AppFramework/Middleware/Security/SecurityMiddlewareTest.php @@ -568,7 +568,7 @@ class SecurityMiddlewareTest extends \Test\TestCase { 'test', $exception ); - $expected = new TemplateResponse('core', '403', ['file' => $exception->getMessage()], 'guest'); + $expected = new TemplateResponse('core', '403', ['message' => $exception->getMessage()], 'guest'); $expected->setStatus($exception->getCode()); $this->assertEquals($expected , $response); } |