Fix getMock HelperStorageTest

This commit is contained in:
Roeland Jago Douma 2016-09-12 21:33:38 +02:00
parent 31532ecf13
commit dcf8091d69
No known key found for this signature in database
GPG Key ID: 1E152838F164D13B
1 changed files with 5 additions and 6 deletions

View File

@ -7,6 +7,7 @@
*/
namespace Test;
use OC\Files\Storage\Temporary;
/**
* Test the storage functions of OC_Helper
@ -62,12 +63,10 @@ class HelperStorageTest extends \Test\TestCase {
* @return \OC\Files\Storage\Storage
*/
private function getStorageMock($freeSpace = 12) {
$this->storageMock = $this->getMock(
'\OC\Files\Storage\Temporary',
array('free_space'),
array('')
);
$this->storageMock = $this->getMockBuilder(Temporary::class)
->setMethods(['free_space'])
->setConstructorArgs([''])
->getMock();
$this->storageMock->expects($this->once())
->method('free_space')