aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/appframework/dependencyinjection/DIContainerTest.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-08-24 09:14:27 +0200
committerMorris Jobke <hey@morrisjobke.de>2015-08-24 09:14:27 +0200
commit40b1054530229139a5cacf28ed4b883d52835ad6 (patch)
treeae6693babddc83bf4c77ef7890726a6b517ed392 /tests/lib/appframework/dependencyinjection/DIContainerTest.php
parent510010e774c4019b7fc616c90085649abb7afac3 (diff)
parentdf2ce8a075d70a2180f2b1c7685b19db6d3ce91b (diff)
downloadnextcloud-server-40b1054530229139a5cacf28ed4b883d52835ad6.tar.gz
nextcloud-server-40b1054530229139a5cacf28ed4b883d52835ad6.zip
Merge pull request #18254 from owncloud/mitigate-breach
Add mitigation against BREACH
Diffstat (limited to 'tests/lib/appframework/dependencyinjection/DIContainerTest.php')
-rw-r--r--tests/lib/appframework/dependencyinjection/DIContainerTest.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/lib/appframework/dependencyinjection/DIContainerTest.php b/tests/lib/appframework/dependencyinjection/DIContainerTest.php
index 0cbdddbb205..598e70beffc 100644
--- a/tests/lib/appframework/dependencyinjection/DIContainerTest.php
+++ b/tests/lib/appframework/dependencyinjection/DIContainerTest.php
@@ -74,6 +74,7 @@ class DIContainerTest extends \Test\TestCase {
$this->container['Request'] = new Request(
['method' => 'GET'],
$this->getMock('\OCP\Security\ISecureRandom'),
+ $this->getMock('\OCP\Security\ICrypto'),
$this->getMock('\OCP\IConfig')
);
$security = $this->container['SecurityMiddleware'];