aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/appframework
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@owncloud.com>2016-01-11 20:29:48 +0100
committerRoeland Jago Douma <rullzer@owncloud.com>2016-01-11 20:29:48 +0100
commit07fd3889b1e7752131dc0bc746abec7646c89d01 (patch)
tree65ce673433c82224f763aec573fd87f07db8c275 /tests/lib/appframework
parent876fb83ddcf7ae6c1b63e7d7a1636893c52284b6 (diff)
downloadnextcloud-server-07fd3889b1e7752131dc0bc746abec7646c89d01.tar.gz
nextcloud-server-07fd3889b1e7752131dc0bc746abec7646c89d01.zip
Fix unit tests
Diffstat (limited to 'tests/lib/appframework')
-rw-r--r--tests/lib/appframework/http/RequestTest.php9
1 files changed, 1 insertions, 8 deletions
diff --git a/tests/lib/appframework/http/RequestTest.php b/tests/lib/appframework/http/RequestTest.php
index 32603d0da59..ab79eb498fa 100644
--- a/tests/lib/appframework/http/RequestTest.php
+++ b/tests/lib/appframework/http/RequestTest.php
@@ -352,18 +352,11 @@ class RequestTest extends \Test\TestCase {
}
public function testGetIdWithoutModUnique() {
- $lowRandomSource = $this->getMockBuilder('\OCP\Security\ISecureRandom')
- ->disableOriginalConstructor()->getMock();
- $lowRandomSource->expects($this->once())
+ $this->secureRandom->expects($this->once())
->method('generate')
->with('20')
->will($this->returnValue('GeneratedByOwnCloudItself'));
- $this->secureRandom
- ->expects($this->once())
- ->method('getLowStrengthGenerator')
- ->will($this->returnValue($lowRandomSource));
-
$request = new Request(
[],
$this->secureRandom,