Fix locking unit tests due to filemtime addition

This commit is contained in:
Vincent Petry 2015-10-19 15:48:49 +02:00
parent b900782513
commit f355d4e51a
1 changed files with 10 additions and 2 deletions

View File

@ -1976,9 +1976,13 @@ class View extends \Test\TestCase {
$view = new \OC\Files\View('/' . $this->user . '/files/');
$storage = $this->getMockBuilder('\OC\Files\Storage\Temporary')
->setMethods([$operation])
->setMethods([$operation, 'filemtime'])
->getMock();
$storage->expects($this->any())
->method('filemtime')
->will($this->returnValue(123456789));
$sourcePath = 'original.txt';
$targetPath = 'target.txt';
@ -2117,9 +2121,13 @@ class View extends \Test\TestCase {
->setMethods([$storageOperation])
->getMock();
$storage2 = $this->getMockBuilder('\OC\Files\Storage\Temporary')
->setMethods([$storageOperation])
->setMethods([$storageOperation, 'filemtime'])
->getMock();
$storage2->expects($this->any())
->method('filemtime')
->will($this->returnValue(123456789));
$sourcePath = 'original.txt';
$targetPath = 'substorage/target.txt';